The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.

SEE ALSO

Input::Validator, Input::Constraint