Skip to content

docs: [Validation] make it clear these rules accept only ASCII alphabets #8177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions user_guide_src/source/libraries/validation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -829,16 +829,16 @@ The following is a list of all the native rules that are available to use:
Rule Parameter Description Example
======================= ========== ============================================= ===================================================
alpha No Fails if field has anything other than
alphabetic characters.
alphabetic characters in ASCII.
alpha_space No Fails if field contains anything other than
alphabetic characters or spaces.
alphabetic characters or spaces in ASCII.
alpha_dash No Fails if field contains anything other than
alphanumeric characters, underscores or
dashes.
dashes in ASCII.
alpha_numeric No Fails if field contains anything other than
alphanumeric characters.
alphanumeric characters in ASCII.
alpha_numeric_space No Fails if field contains anything other than
alphanumeric or space characters.
alphanumeric or space characters in ASCII.
alpha_numeric_punct No Fails if field contains anything other than
alphanumeric, space, or this limited set of
punctuation characters: ``~`` (tilde),
Expand Down