Created
February 21, 2012 21:23
-
-
Save BrandonZacharie/1879052 to your computer and use it in GitHub Desktop.
A JavaScript function to convert a string to a RegExp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!String.toRegExp) | |
String.toRegExp = function String_toRegExp(pattern, flags) { | |
return new RegExp(pattern.replace(/[\[\]\\{}()+*?.$^|]/g, function (match) { return '\\' + match; }), flags); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment