Common Regex Flags
re.IGNORECASE (re.I)
Makes matching case-insensitive.
re.MULTILINE (re.M)
Makes ^ and $ match start/end of each line.
re.DOTALL (re.S)
Makes . match newlines too.
Learning Objectives
Lesson Outline
Makes matching case-insensitive.
Makes ^ and $ match start/end of each line.
Makes . match newlines too.