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

I want to test a string's format. This string should start with a + sign, then 2 digits, then a . sign, then 10 digits.

/^+d{2}.d{10}$/.test('+34.2398320186');

This way, it works (you can test it). But when I use RegExp, it says that the syntax has invalid quantifier error. What's wrong?

See Question&Answers more detail:os

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

1 Answer

You have to escape the with a second \

new RegExp('^\+\d{2}\.\d{10}$'); // should work

I'll add a recommendation from http://www.regular-expressions.info/javascript.html

I recommend that you do not use the RegExp constructor with a literal string, because in literal strings, backslashes must be escaped.


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

548k questions

547k answers

4 comments

86.3k users

...