RegexValidator
RegexValidator
Section titled “RegexValidator”use Fynix\Rule;
$validator = Rule::regex('reference', '/^[A-Z]{3}-[0-9]{4}$/');$error = $validator->validateField('ABC-1234');An invalid pattern throws InvalidArgumentException when the rule is created. Values must be strings and must match the expression.