Very noob question.
I want to replace all visibility. "" in a row with empty space ..
So this is what I tried
String s = "1.2.3.4"; System.out.println(s); s = s.replaceAll(".", " "); System.out.println(s);
But the second seal is a blank font?
What did I miss here?
source share