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