gpt4 book ai didi

PHP RegEx 防止重复字符

转载 作者:行者123 更新时间:2023-12-03 20:50:36 26 4
gpt4 key购买 nike

if(preg_match("%(?=.{8})[A-Za-z0-9]([.-]{0,1})%", stripslashes(trim($_POST['username']))))

我希望用户名至少为 8 个字符 A-Za-z0-9,其中只有 1 个。或 1 - 。我该如何实现?我的代码允许用户名“................”有效。 <- 不想这样。

顺便说一句:“。”或“-”是可选的。

最佳答案

有时,正则表达式并不是完成这项工作的正确工具。

$username = stripslashes(trim($_POST['username']));

if(preg_match('/^[a-zA-Z0-9.-]{8,}$/', $username)
&& substr_count($username, '-') <= 1
&& substr_count($username, '.') <= 1) {
# It's valid.
}

关于PHP RegEx 防止重复字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11320402/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com