In java i tried replace char with ''. But it's showing "Empty Literal Character" error.I have condition about certain characters must be '' , not ' ' Not include empty one character. Here is example code:
for(int i=0; int<name.length;i++){
name=name.replace(name.charAt(i),'');
}
How can i do this ? Can you help ?