Skip to content

Commit

Permalink
Merge pull request #8177 from kenjis/docs-validation-alpha
Browse files Browse the repository at this point in the history
docs: [Validation] make it clear these rules accept only ASCII alphabets
  • Loading branch information
kenjis authored Nov 8, 2023
2 parents 4057489 + 75676bd commit 7f3afe9
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 7f3afe9

Please sign in to comment.