pl.chilldev.commons.text.formatter.PlainTextFormatter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-text Show documentation
Show all versions of commons-text Show documentation
Text processing utilities.
/*
* This file is part of the ChillDev-Commons.
*
* @license http://mit-license.org/ The MIT license
* @copyright 2016 - 2017 © by Rafał Wrzeszcz - Wrzasq.pl.
*/
package pl.chilldev.commons.text.formatter;
import org.apache.commons.text.StringEscapeUtils;
/**
* Plain text format handler.
*/
public class PlainTextFormatter implements FormatterInterface
{
/**
* {@inheritDoc}
*/
@Override
public String transform(String text)
{
return StringEscapeUtils.ESCAPE_XML10.translate(text).replaceAll("\n", "
");
}
}