正規表現を学んでいるので、気楽にどうぞ!
ユーザー名は、が(アンダースコア)で始まらない場合、および_
単語文字(文字、数字、アンダースコア自体)のみが含まれている場合に有効と見なされます。
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);
}
}
}
それらを1つの正規表現にマージするために、私は次のことを試しました。
^_+[^\w]+$
読み方:アンダースコアで始まる場合(最終的には複数)、および後続の文字が少なくとも1つ許可されていない場合(文字、数字、またはアンダースコアではない)、違反を追加します。たとえば、「_test」では機能しません。
私がどこが間違っているのか理解するのを手伝ってくれませんか?