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

Pattern.quote("pattern") returns \Qpattern\E. Is it really necessary to literalize a string if there is no meta character in it?

share|improve this question

2 Answers

up vote 4 down vote accepted

No, it's not necessary, but that's what the implementer chose to do, probably to simplify the implementation and because the cost of the unnecessary \Q and \E is rather small.

In my JDK, the only thing that Pattern.quote() cares about is whether there are already \Q and \E in the pattern. It doesn't look for any other special characters.

share|improve this answer

My guess is that it's just simpler and more efficient. Instead of doing a first pass to see if there are meta characters, and then a second pass to quote them, just assume that there are metacharacters, and always quote.

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.