Hello,
I am trying to replace every "(" and ")" occurence in a String but when I am using the replaceAll method, i.e:
data.replaceAll("(","") it treats it as an illegal regular expression.
How can I "tell" this methos that I would like to replace these signs and not to treat it as regular expressions.
I am trying to replace every "(" and ")" occurence in a String but when I am using the replaceAll method, i.e:
data.replaceAll("(","") it treats it as an illegal regular expression.
How can I "tell" this methos that I would like to replace these signs and not to treat it as regular expressions.