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

I have some troubles with this small JavaScript code:

var text="Z Test Yeah ! Z";

// With literal syntax, it returns true: good!
alert(/(Z[\s\S]*?Z)/g.test(text));

// But not with the RegExp object O_o
var reg=new RegExp('Z[\s\S]*?Z','g');
alert(reg.test(text));

I don't understand why the literal syntax and the RegExp object don't give me the same result... The problem is that I have to use the RegExp object since I'll have some variables later.

Any ideas?

Thanks in advance :)

share|improve this question
Good job on writing a well-formatted, well-written first question. – zzzzBov Aug 10 '11 at 17:18

2 Answers

up vote 4 down vote accepted

You need to double escape \ characters in string literals, which is why the regex literal is typically preferred.

Try:

'Z[\\s\\S]*?Z'
share|improve this answer
It's correct, with backslashes it works...! Thank you so much, since we don't need them with literal syntax, I didn't think that they are mandatory for RegExp object. Thank you again! – KorHosik Aug 10 '11 at 17:15

I think it's because you have to escape your backslashes, even when using single quotes. Try this:

new RegExp('Z[\\s\\S]*?Z','g')
share|improve this answer

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.