The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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