Regular ExpressionsSpecial characters\number Matches text matched by previous group \A Matches start of string \b Matches empty string at beginning or end of word \B Matches empty string not at begin or end of word \d Matches any decimal digit \D Matches any non-digit \s Matches any whitespace \S Matches any non-whitespace \w Matches any alphanumeric character \W Matches characters not in \w \Z Match at end of string. \\ Literal backslash Raw strings
|
<<< | O'Reilly OSCON 2000, Advanced Python Programming, Slide 26 July 17, 2000, beazley@cs.uchicago.edu |
>>> |