Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能帮助我,我需要一个用于电话号码验证的正则表达式,它可以接受 0 或 +
[0+]\d{9}
当您需要整个字符串等于您必须添加的数字^时$:
^
$
^[0+]\d{9}$
[0+]指0或+;\d表示任何数字;{9}表示“重复 9 次”; ^表示行首;^$^ 表示行尾。
[0+]
0
+
\d
{9}
为此使用以下正则表达式:
^[+0]\d+
谢谢