Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Why this returns false instead of true.

function doit(expression) {

    var regex = new RegExp(expression, 'g');

    alert(regex.test('mename@memail.com'));
}

doit("/^w+([-+.']w+)*@w+([-.]w+)*.w+([-.]w+)*/");
?

http://jsfiddle.net/hAV8Q/

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
300 views
Welcome To Ask or Share your Answers For Others

1 Answer

Either format your expression properly:

function doit(expression) {
    var regex = new RegExp(expression, 'g');
    alert(regex.test('mename@memail.com'));
}

doit("^\w+([-+.\']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*");
// no / here, escape 

or pass the expression directly:

function doit(expression) {
    alert(expression.test('mename@memail.com'));
}

doit(/^w+([-+.']w+)*@w+([-.]w+)*.w+([-.]w+)*/g);

?


The slashes (/) are not part of the expression, they denote a regex literal. If you use a string containing the expression, you have to omit them and escape every backslash since the backslash is the escape character in strings as well.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...