Glossary

Use regex when:

You need to match a *pattern* rather than a fixed string ("any sequence of digits") - You need to *extract* part of a string (capture groups with `.str.extract()`) - You need to match with *flexibility* (one word OR another, optional characters) - You need *anchoring* (must start with, must end with

Learn More

Related Terms