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.
在 php 或 js 中验证土耳其电话号码的正则表达式
示例:+90 (212) 123 12 12
试试这个:http ://www.txt2re.com/index-javascript.php3?s=%2b90%20(212)%20123%2012%2012&28&17&22&18&23&19&24&27&20&25&21&26
我经常使用这个网站来做我的正则表达式。它以您想要的语言生成代码。
复制代码后,只需编辑“if”中的内容。魔法。
试试这个,它应该可以在php环境中工作
^\+(\d{2})\s\((\d{3})\)\s(\d{3})\s(\d{2})\s(\d{2})
演示
javascript...
var testNumber = "+90 (212) 123 12 12"; testNumber.replace(/\D+/g,"").matches(/90\d{10}/);
消除所有非数字字符,然后确保您有 90 后跟 10 位数字