验证 PHP 中的西里尔字母输入
有没有办法(正则表达式?)来检查字符串是否仅由西里尔字母数字字符组成?
我需要验证输入是否在西里尔字母、数字、破折号和空格的范围内
Is there a way (regular expression?) to check if a string is composed only of Cyrillic alphanumeric characters?
I need to validate an input to be in range of the Cyrillic alphabet, plus numbers, dashes and spaces
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
\p{Cyrillic}
匹配西里尔字母(您可以使用阿拉伯语、希腊语等来表示其他字母)\d 匹配数字
\s
匹配空白字符\-
匹配破折号\p{Cyrillic}
matches Cyrillic characters (you can use Arabic, Greek, etc. for other alphabets)\d
matches numbers\s
matches whitespace characters\-
matches dashes