Does StringEscapeUtils.escapeHtml(String) escapes $ symbol, too?

4.2k Views Asked by At

I want to escape $ symbol along with other characters like '<', '>' etc. So just wanted to know if StringEscapeUtils supported this. And if not, how can I escape it?

2

There are 2 best solutions below

0
On

Looks like no. You can try it with this code:

StringEscapeUtils.escapeHtml("<b>Hello, World!</b>$")

Outputs

&lt;b&gt;Hello, World!&lt;/b&gt;$
2
On

I tested doing the following from commons-text 1.1 after commons-lang 3 deprecated StringEscapeUtils:

public static void main(String[] args)
{
    System.out.println(StringEscapeUtils.escapeHtml4("$ % > < = #"));
}

Output $ % &gt; &lt; = #

It does not escape "$" out of the box, but the new Utils in commons-text enable users to extend it. Read this article for examples. Here is a small one, but the article shows more advanced possibilities:

Map<CharSequence, CharSequence> added = new HashMap<>();
added.put("$", "foo");
System.out.println(StringEscapeUtils.ESCAPE_HTML4
                                    .with(new LookupTranslator(added))
                                    .translate("$ % > < = #"));

Output foo % &gt; &lt; = #