Feedback
A regex is short for “regular expression,” and both terms mean the
same thing.
A regular expression is a pattern of characters used to search,
match, or modify text.
Example: The regex [\w\.-]+@[\w\.-]+\.\w+
will find all
email addresses in a block of text.