如果字符串中有多个相同的字符则匹配
我想匹配一个字符串是否包含超过 1 个相同的字符,例如: 使用 PHP preg_match 或类似的函数。
该字符将是“-”
某物或其他:不匹配
Test-tes-t : match
基本上我想要做的是禁止在用户输入中使用超过 1 个“-”。
I would like to match if a string contains more than 1 identical character, for example :
Using PHP preg_match or similar function.
the character would be "-"
Something-or other : no match
Test-tes-t : match
Basically what I want to do is disallow the use of more than 1 "-" in a user input.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不只是
substr_count($text, '-') > 1 够了吗?
Isn't just
substr_count($text, '-') > 1
enough?