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

31 lines
552 B
Markdown

# Regex
- `Regex(string $regex)`
Validates whether the input matches a defined regular expression.
```php
v::regex('/[a-z]/')->validate('a'); // true
```
Message template for this validator includes `{{regex}}`.
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
See also:
- [Alnum](Alnum.md)
- [Alpha](Alpha.md)
- [Contains](Contains.md)
- [CreditCard](CreditCard.md)
- [Digit](Digit.md)
- [EndsWith](EndsWith.md)
- [PhpLabel](PhpLabel.md)
- [Roman](Roman.md)
- [StartsWith](StartsWith.md)
- [Version](Version.md)