replaceAll plus symbol
807591Mar 19 2008 — edited Mar 19 2008Hi-
I have a Text Area and I need to remove all occurences of the String " +" <-- so thats a space + plus
It does not remove the + but it does remove the space.
Using just replace() to get rid of the character + works but it won't allow me to replace the plus symbol with an empty character since such a thing does not exist like it does for an empty string.
It is important to the program to remove the string literal " +" and not just "+"
What to do? Thanks-