NAME
Input::Validator::Constraint::Regexp - Regexp constraint
SYNOPSIS
$validator
->field(
'number'
)->regexp(
qr/^\d+$/
);
DESCRIPTION
Checks if the value mathes provided regular expression. Don't forget ^
and $
symbols if you want to check the whole value.
METHODS
is_valid
Validates the constraint.