I want to represent an empty character in Java as \"\" in String...
\"\"
Like that char ch = an empty character;
char ch = an empty character;
Actually I want to rep
You can do something like this:
mystring.replace(""+ch, "");