Is there a PHP function that can escape regex patterns before they are applied?

I am looking along the lines of the C# Regex.Escape function.

link|improve this question

61% accept rate
feedback

1 Answer

up vote 68 down vote accepted

preg_quote() is what you are looking for:

preg_quote() takes str and puts a backslash in front of every character that is part of the regular expression syntax. This is useful if you have a run-time string that you need to match in some text and the string may contain special regex characters.

The special regular expression characters are: . \ + * ? [ ^ ] $ ( ) { } = ! < > | : -

link|improve this answer
1  
ugh, beaten by 20 seconds :) – soulmerge Oct 7 '09 at 12:56
1  
beaten much much later – vfclists Oct 7 '09 at 14:10
feedback

Your Answer

 
or
required, but never shown

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