michaellunsford Posted March 14, 2007 Share Posted March 14, 2007 Some client content is starting to contain slashes and other oddities. Generally, preg_replace will give "unknown modifier" errors on the character directly following a slash in client content. So, I've patched it using addcslashes, but I'm not sure I have the complete regex special character list. Is there a built-in php function that's eluding me, or is addcslashes the only way to go? If the latter, I have "\/^$*+?.()|{}," -- am I missing any? Link to comment https://forums.phpfreaks.com/topic/42744-best-way-to-escape-string-for-regex/ Share on other sites More sharing options...
effigy Posted March 14, 2007 Share Posted March 14, 2007 preg_quote. Link to comment https://forums.phpfreaks.com/topic/42744-best-way-to-escape-string-for-regex/#findComment-207421 Share on other sites More sharing options...
michaellunsford Posted March 14, 2007 Author Share Posted March 14, 2007 hey, great. that's it... Just couldn't find it for some weird reason. Thanks! Link to comment https://forums.phpfreaks.com/topic/42744-best-way-to-escape-string-for-regex/#findComment-207460 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.