* If the formatter with the name does not exist, the input string will be
* appended with the formatName.
*/
public static String format(String str, String formatName)
{
final Formatter formatter = DEFAULT_FORMATTERS.get(formatName);
if(formatter != null)
return formatter.format(str);
// regex replace
int eq = formatName.indexOf("==");
if(eq > 0)
{