respect-validation/docs/Alnum.md

48 lines
892 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# Alnum
- `Alnum()`
- `Alnum(string $additionalChars)`
2015-01-30 09:40:06 +01:00
Validates alphanumeric characters from a-Z and 0-9.
```php
v::alnum()->validate('foo 123'); // true
2015-01-30 09:40:06 +01:00
```
A parameter for extra characters can be used:
```php
v::alnum('-')->validate('foo - 123'); // true
2015-01-30 09:40:06 +01:00
```
This validator allows whitespace, if you want to
remove them add `->noWhitespace()` to the chain:
```php
v::alnum()->noWhitespace()->validate('foo 123'); // false
2015-01-30 09:40:06 +01:00
```
You can restrict case using the `->lowercase()` and
`->uppercase()` validators:
```php
v::alnum()->uppercase()->validate('aaa'); // false
2015-01-30 09:40:06 +01:00
```
Message template for this validator includes `{{additionalChars}}` as
the string of extra chars passed as the parameter.
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
2015-01-30 09:40:06 +01:00
See also:
* [Alpha](Alpha.md)
* [Digit](Digit.md)
* [Consonant](Consonant.md)
* [Vowel](Vowel.md)