Pattern.quote("pattern") returns \Qpattern\E. Is it really necessary to literalize a string if there is no meta character in it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
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 In my JDK, the only thing that |
|||
|
|
|
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. |
|||
|
|