I have a java string with " "
from a text file the program accesses with a Buffered Reader object. I have tried string.replaceAll(" ","")
and it doesn't seem to work.
Any ideas?
cleaned = cleaned.replace(" "," ");
cleaned = cleaned.replace("\u00a0","")