oxjs/source/Ox/js/RegExp.js
2012-05-25 14:32:17 +02:00

9 lines
No EOL
314 B
JavaScript

/*@
Ox.escapeRegExp <f> Escapes a string for use in a regular expression
(str) -> <r> Escaped string
str <s> String
@*/
// see https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions
Ox.escapeRegExp = function(string) {
return (string + '').replace(/([\/\\^$*+?.-|(){}[\]])/g, '\\$1');
};