Metacharachters

Learn how to use metacharacters in regex.

Perl interprets several characters in regular expressions as metacharacters, characters that represent something other than their literal interpretation.

We’ve seen a few metacharacters already (\b, ., and ?, for example). Metacharacters give regex wielders power far beyond mere substring matches. The regex engine treats all metacharacters as atoms. See perldoc ...