I tried to replace characters in String which works sometimes and does not work most of the time.
I tried the following:
String t = \"[javatag]\"; String
String.replace doesn't work that way. You have to use something like t = t.replace("t", "")
t = t.replace("t", "")