respect-validation/docs/Vowel.md

18 lines
250 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# Vowel
- `Vowel()`
2015-01-30 09:40:06 +01:00
Similar to `Alnum()`. Validates strings that contains only vowels:
2015-01-30 09:40:06 +01:00
```php
v::vowel()->validate('aei'); // true
2015-01-30 09:40:06 +01:00
```
***
2015-01-30 09:40:06 +01:00
See also:
* [Alnum](Alnum.md)
* [Digit](Digit.md)
* [Alpha](Alpha.md)
* [Consonant](Consonant.md)