Pattern Matching Using Search and Escape Codes
Let's dig into some pattern matching using regular expressions and how escape codes can be helpful.
Let’s take a moment to learn some pattern matching basics. When using Python to look for a pattern in a string, we can use the search function like we did in the previous lesson.
Pattern matching with search()
Here’s how:
For this example, we import the re module and create a ...