respect-validation/docs/rules/Alnum.md

58 lines
1.2 KiB
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 whether the input is alphanumeric or not.
2015-01-30 09:40:06 +01:00
Alphanumeric is a combination of alphabetic (a-z and A-Z) and numeric (0-9)
characters.
2015-01-30 09:40:06 +01:00
```php
v::alnum()->validate('foo 123'); // false
v::alnum(' ')->validate('foo 123'); // true
v::alnum()->validate('100%'); // false
v::alnum('%')->validate('100%'); // true
v::alnum('%', ',')->validate('10,5%'); // true
2015-01-30 09:40:06 +01:00
```
You can restrict case using the [Lowercase](Lowercase.md) and
[Uppercase](Uppercase.md) rules.
2015-01-30 09:40:06 +01:00
```php
v::alnum()->uppercase()->validate('example'); // 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.
2015-01-30 09:40:06 +01:00
## Categorization
- Strings
## Changelog
Version | Description
--------|-------------
2.0.0 | Removed support to whitespaces by default
0.3.9 | Created
***
2015-01-30 09:40:06 +01:00
See also:
- [Alpha](Alpha.md)
2018-12-11 13:31:50 +01:00
- [Charset](Charset.md)
- [Consonant](Consonant.md)
- [Control](Control.md)
- [Decimal](Decimal.md)
2018-12-11 13:31:50 +01:00
- [Digit](Digit.md)
- [Lowercase](Lowercase.md)
- [NoWhitespace](NoWhitespace.md)
- [NotEmoji](NotEmoji.md)
2018-12-11 13:31:50 +01:00
- [Regex](Regex.md)
- [StringType](StringType.md)
- [StringVal](StringVal.md)
- [Uppercase](Uppercase.md)
- [Vowel](Vowel.md)
2018-12-11 13:31:50 +01:00
- [Xdigit](Xdigit.md)