reDOTALL
reDOTALL refers to the DOTALL flag in Python's standard library for regular expressions, the re module. When enabled, the dot character in a regex pattern matches any character, including the newline character. Without DOTALL, the dot matches any character except a newline.
The flag is exposed as re.DOTALL and has the alias re.S. It can be passed to regex
DOTALL affects only the behavior of the dot; it does not by itself change the behavior of
Common uses of reDOTALL include parsing multi-line strings, blocks of text, or log entries where the target
Related concepts include re.MULTILINE for line anchors and the inline form (?s) to enable DOTALL directly in