hi
i need to replace a " * ", from a String, but it show me an exception
String temp = "Rajesh*Beu";
temp.replaceAll("*","_");
System.out.println(temp);
Exception is
Exception in thread "main" java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0
*
^
from this, i came to know that, java using * as internal pointer.
but my requirement is to change * to some other character...........
please help me, if you find....
thank you,
rajesh