Feedback
A regular expression (regex) is a sequence of characters that defines
a search pattern for matching, finding, or manipulating text.
For example, the regex \d+
applied to “Order 1239 and
45” will match one or more digits. It will return
['1239', '45']
.