Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
184 views
in Technique[技术] by (71.8m points)

javascript - new RegExp('^+d{2}.d{10}$') doesn't work

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

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

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...