我正在学习正则表达式,所以请放轻松!
如果用户名不以_
(下划线)开头并且仅包含单词字符(字母、数字和下划线本身),则认为用户名有效:
namespace Gremo\ExtraValidationBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
class UsernameValidator extends ConstraintValidator
{
public function validate($value, Constraint $constraint)
{
// Violation if username starts with underscore
if (preg_match('/^_', $value, $matches)) {
$this->context->addViolation($constraint->message);
return;
}
// Violation if username does not contain all word characters
if (!preg_match('/^\w+$/', $value, $matches)) {
$this->context->addViolation($constraint->message);
}
}
}
为了将它们合并到一个正则表达式中,我尝试了以下方法:
^_+[^\w]+$
解读为:如果以下划线开头(最终不止一个),并且如果后面至少有一个字符是不允许的(不是字母、数字或下划线),则添加违规。例如,不适用于“_test”。
你能帮我理解我错在哪里吗?