Module human_regex::shorthand

source ·
Expand description

Functions for general purpose matches

Enums

An enum covering all Unicode character categories
An enum for covering all Unicode script categories

Functions

A function for matching any character (except for \n)
A function for the digit character class (i.e., the digits 0 through 9)
A function for the non-digit character class (i.e., everything BUT the digits 0-9)
A function for not matching Unicode character categories. For matching script categories see non_unicode_script.
A function for matching Unicode characters not belonging to a certain script category. For matching other categories see non_unicode_category.
A function for the whitespace character class (i.e., everything BUT space and tab)
A function for the non-word character class (i.e., everything BUT the alphanumeric characters plus underscore)
A function for matching Unicode character categories. For matching script categories see unicode_script.
A function for matching Unicode characters belonging to a certain script category. For matching other categories see unicode_category.
A constant for the whitespace character class (i.e., space and tab)
Matches anything within a range of characters
Matches anything outside of a range of characters
A function for the word character class (i.e., all alphanumeric characters plus underscore)