respect-validation/docs/rules/Printable.md

28 lines
365 B
Markdown
Raw Normal View History

# Printable
2015-01-30 09:40:06 +01:00
- `Printable()`
- `Printable(string ...$additionalChars)`
2015-01-30 09:40:06 +01:00
Similar to `Graph` but accepts whitespace.
2015-01-30 09:40:06 +01:00
```php
v::printable()->validate('LMKA0$% _123'); // true
2015-01-30 09:40:06 +01:00
```
## Categorization
- Strings
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
2015-01-30 09:40:06 +01:00
See also:
- [Control](Control.md)
- [Graph](Graph.md)
2018-12-11 13:31:50 +01:00
- [Punct](Punct.md)