respect-validation/docs/Xdigit.md
Henrique Moody 00d300f762
Add changelog to rules' documentation
Also:
- Create documentation for `Base` rule;
- Increase number of rules
2017-03-28 11:22:58 +02:00

28 lines
399 B
Markdown

# Xdigit
- `Xdigit()`
Accepts an hexadecimal number:
```php
v::xdigit()->validate('abc123'); // true
```
Notice, however, that it doesn't accept strings starting with 0x:
```php
v::xdigit()->validate('0x1f'); // false
```
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
See also:
* [Digit](Digit.md)
* [Alnum](Alnum.md)
* [HexRgbColor](HexRgbColor.md)