i want to remove all of the following chars from my string
\">[],-\"
at the moment im doing this. but there must be a more effic
newString = myString.replaceAll("[>\\[\\],-]", "");
The backslashes are to escape the '[' because the first argument is actually a regular expression.