re
re.DOTALL
The re.DOTALL search modifier forces the symbol . represent any character, including the newline symbol \n.
re.MULTILINE
The re.MULTILINE search modifier forces the ^ symbol to match at the beginning of each line of text (and not just the first), and the $ symbol to match at the end of each line of text (and not just the last one).
re.ASCII
The re.ASCII search modifier forces the symbols \w, \W, \b, \B, \d, \D, \s, and \S to rely on ASCII code to find text matches, rather than in Unicode.
re.DEBUG
The re.DEBUG search modifier displays debug information regarding the function being executed.
re.IGNORECASE
The re.IGNORECASE search modifier forces the function to which is applied to perform a case-insensitive search.
re.split
The re.split function splits the text string, considering as separator the occurrences of the regular expression pattern.
Pagination
- Page 1
- Next page