respect-validation/docs/rules/Regex.md
Danilo Correa 54293d4ca2
Apply contribution guidelines to "Regex" rule
Because some classes extend the "Regex" class this commit will also
change the implementation of those classes to use "Regex" by composition
instead of extending the class.

Co-authored-by: Henrique Moody <henriquemoody@gmail.com>
2018-12-14 00:15:03 +01:00

552 B

Regex

  • Regex(string $regex)

Validates whether the input matches a defined regular expression.

v::regex('/[a-z]/')->validate('a'); // true

Message template for this validator includes {{regex}}.

Changelog

Version Description
0.3.9 Created

See also: