Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use a string to perform a global regex, but it might have regex characters in it. What's the best way to escape all regex characters in a string before building a regex with it?

Basically I might have something like this;

var test = 'test.';
var regex = new RegExp(test, 'ig');

I need 'test.' to become 'test\.' so it doesn't behave in unexpected ways.

share|improve this question
Similar to a question I asked a few months ago! I never really got an answer though so maybe you will... stackoverflow.com/questions/3614440/… – MatrixFrog Jun 9 '11 at 22:55

2 Answers

up vote 3 down vote accepted
new RegExp(test.replace(/[#-.]|[[-^]|[?|{}]/g, '\\$&'));

or simply:

new RegExp(test.replace(/[#-}]/g, '\\$&'));

the latter will end up escaping a lot more than it should, but it won't harm anything.

share|improve this answer
you forgot the /g global flag, to replace all the occurrences (I tried to edit your post, but it tells me that the change must be at least 6 characters) – ypocat Sep 24 '12 at 16:38
@ypocat - danke :) – cwolves Sep 24 '12 at 21:25

This will replace all special RegExp characters with their escaped version:

test = test.replace(/[\\\.\+\*\?\^\$\[\]\(\)\{\}\/\'\#\:\!\=\|]/ig, "\\$&");
share|improve this answer
But some of those characters are only special in certain contexts, aren't they? Does that cause a problem at all? – MatrixFrog Jun 9 '11 at 22:59
In other contexts escaping the character won't harm the RegExp match string, it will just end up being unnecessary. – mVChr Jun 9 '11 at 23:00
no need to escape #, /, ' or :. You also need - and ,, and you don't need to escape most of those characters in the context you're in. It can simply become /[-\\.,_*+?^$[\](){}!=|]/ – cwolves Jun 9 '11 at 23:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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