Last Modified
2014-06-07 04:05:53 +0000
Requires

Description

Matches a special kind of regular expression that only ever matches one character at a time. Useful members of this family are: character ranges, \w, \d, \r, \n, ...

Example:

match('[a-z]')  # matches a-z
match('\s')     # like regexps: matches space characters