Closed
Description
In relation to issue #8 , the fix has replaced special characters in the regex part of the replaceAll and not the replacement string (second argument of the replaceAll method).
This is occurring in line 389 of the GeneralUtility class. Suggest the following fix:
text = text.replaceAll(Pattern.quote(prefix+var.getKey()), Pattern.quote(var.getValue()));
Thanks.