Module human_regex::ascii

source ·
Expand description

Functions for ASCII character classes

Functions

A function to match any alphabetic character ([A-Za-z])
A function to match any alphanumeric character ([0-9A-Za-z])
A function to match any ascii digit ([\x00-\x7F])
A function to match blank characters ([\t ])
A function to match control characters ([\x00-\x1F\x7F])
A function to match graphical characters ([!-~])
A function to match any digit that would appear in a hexadecimal number ([A-Fa-f0-9])
A function to match any lowercase character ([a-z])
A function to match any non-alphabetic character ([^A-Za-z])
A function to match any non-alphanumeric character ([^0-9A-Za-z])
A function to match any non-ascii digit ([^\x00-\x7F])
A function to match non-blank characters ([^\t ])
A function to match non-control characters ([^\x00-\x1F\x7F])
A function to match non-graphical characters ([^!-~])
A function to match any digit that wouldn’t appear in a hexadecimal number ([^A-Fa-f0-9])
A function to match any non-lowercase character ([^a-z])
A function to match unprintable characters ([^ -~])
A function to match non-punctuation ([^!-/:-@\[-{-~]`)
A function to match any non-uppercase character ([^A-Z])
A function to match printable characters ([ -~])
A function to match punctuation ([!-/:-@\[-{-~]`)
A function to match any uppercase character ([A-Z])