php – Yahoo用户名Regex

前端之家收集整理的这篇文章主要介绍了php – Yahoo用户名Regex前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要一个(PHP)正则表达式来匹配雅虎的用户名规则:

Use 4 to 32 characters and start with a letter. You may use letters,numbers,underscores,and one dot (.).

/^[A-Za-z](?=[A-Za-z0-9_.]{3,31}$)[a-zA-Z0-9_]*\.?[a-zA-Z0-9_]*$/

还是稍短一点

/^[a-z](?=[\w.]{3,31}$)\w*\.?\w*$/i
原文链接:https://www.f2er.com/php/131136.html

猜你在找的PHP相关文章