We're using replaceAll method of String and we can't replace { in any string. Our example:
Tried :
"some { string".replaceAll("{", "other string");
And the error is the following:
java.util.regex.PatternSyntaxException: Illegal repetition occurs
Open to any ideas! Maybe there is a workaround?!