Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

3 Answers

up vote 10 down vote accepted

Why not just use String#replace() method, that does not take a regex as parameter: -

text = text.replace("*","");

In contrary, String#replaceAll() takes a regex as first parameter, and since * is a meta-character in regex, so you need to escape it, or use it in a character class. So, your way of doing it would be: -

text = text.replaceAll("[*]","");  // OR
text = text.replaceAll("\\*","");

But, you really can use simple replace here.

share|improve this answer
But does it remove all * if String have more than 1 character? – arhimed Jan 29 at 19:33
1  
@arhimed. Yeah, of course it removes all of them. Just try it out on your sample string. – Rohit Jain Jan 29 at 19:34

you can simply use String#replace()

text = text.replace("*","");

String.replaceAll(regex, str) takes regex as a first argument, as * is a metachacter you should escape it with a backslash to treat it as a normal charcter.

text.replaceAll("\\*", "")
share|improve this answer

Try this.

You need to escape the * for the regular expression, using .

text = text.replaceAll("\\*","");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.