Metacharacter
↔ \ ^ $ . * + ? ( ) [ ] { } |
special reserved RegExp
character with special (non-literal) meaning to define search criteria/manipulation
\
regex Escape Metacharacter to escape reserved regex characters
.
regex Metacharacter to match any single character (excl \n
& line terminator)
References
Pattern Character
↔ any characters (except for Metacharacter) that match themselves.
↔ regex Metacharacter to match any single character (excl\n
& line terminator)\xxx
↔ regex Metacharacter for Octal number xxx\xdd
↔ regex Metacharacter for Hexadecimal number dd\uxxxx
↔ regex Metacharacter for unicode character specified by Hexadecimal number xxxx\
↔ regex Escape Metacharacter to escape reserved regex characters\0
↔ regex Metacharacter for NUL character.
↔ Metacharacter to match any character (excl line terminators)