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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…