Glossary
Regular Expression (Regex)
A sequence of characters that defines a pattern for matching, extracting, or replacing text. Regular expressions use character classes ([a-z], \d, \w), quantifiers (*, +, {n}), anchors (^, $, \b), groups ((), (?:)), and alternation (|) to describe text patterns.