Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please correct me if I am wrong.

I want to replace substring in a string in java. And I want to use String.replace(CharSequence target, CharSequence replacement) method.

I do not use regular expressions in target substring and I think this method is a good choice.

This method will work properly even there will be special regexp symbols in target substring and it will just ignore regexp format and treat target substring as a regular string.

Am I right?

Thank you.

share|improve this question

2 Answers

up vote 1 down vote accepted

Yes, if you use replace the arguments will be treated as ordinary strings, not regular expressions.

If you want to replace using an regular expression you need to use replaceAll.

share|improve this answer
Thank you, Mark. – Peter Dawson Nov 15 '11 at 8:36

Yes you are correct: String.replace does not use regex. It replaces a literal with another literal.

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.