I have a String variable that contains '*' in it. But Before using it I have to replace all this character.
I've tried replaceAll function but without success:
text = text.replaceAll("*","");
text = text.replaceAll("*",null);
Could someone help me? Thanks!