mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 15:25:45 +01:00
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>
31 lines
552 B
Markdown
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)
|