Input content sent as HTML will fail if it contains the following escaped sequences for the "$" and the "\" characters, which have special meaning in Java regular expressions:

Dollar sign ($) - $ (decimal) and $ (hexadecimal)
Backslash (\) - \ (decimal) and \ (hexadecimal)

Use the characters directly, without any escape sequence.

 This is fixed in Release 3.1.