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.
可能重复: 用于电话号码验证的综合正则表达式
没有 + 符号的只有 13 位电话号码的正则表达式是什么?
数字可以从 0 到 9 开始。只允许数字。[没有 + 符号和 . ]
你可以试试这个: -
@"^\d{13}$"
或者
@"\d{13}"
\d表示匹配任何数字
\d
和
{13}意味着13次
{13}