2012-05-19 06:36:02 +00:00
|
|
|
/*@
|
|
|
|
Ox.escapeRegExp <f> Escapes a string for use in a regular expression
|
|
|
|
(str) -> <r> Escaped string
|
|
|
|
str <s> String
|
2012-05-27 16:41:14 +00:00
|
|
|
> Ox.escapeRegExp('foo.com/bar?baz')
|
|
|
|
'foo\\.com\\/bar\\?baz'
|
|
|
|
> new RegExp(Ox.escapeRegExp('foo.com/bar?baz')).test('foo.com/bar?baz')
|
|
|
|
true
|
2012-05-19 06:36:02 +00:00
|
|
|
@*/
|
|
|
|
// see https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions
|
2012-05-25 12:32:17 +00:00
|
|
|
Ox.escapeRegExp = function(string) {
|
2012-05-26 21:15:09 +00:00
|
|
|
return (string + '').replace(/([\/\\\^\$\*\+\?\.\-\|\(\)\{\}\[\]])/g, '\\$1');
|
2012-05-19 06:36:02 +00:00
|
|
|
};
|