1# Lowercase
2
3- `v::lowercase()`
4
5Validates if string characters are lowercase in the input:
6
7```php
8v::stringType()->lowercase()->validate('xkcd'); // true
9```
10
11***
12See also:
13
14  * [Uppercase](Uppercase.md)
15