Next: Anchoring, Previous: Character Classes and Bracket Expressions, Up: Regular Expressions [Contents][Index]
The ‘\’ character followed by a special character is a regular expression that matches the special character. The ‘\’ character, when followed by certain ordinary characters, takes a special meaning:
Match the empty string at the edge of a word.
Match the empty string provided it’s not at the edge of a word.
Match the empty string at the beginning of a word.
Match the empty string at the end of a word.
Match word constituent, it is a synonym for ‘[_[:alnum:]]’.
Match non-word constituent, it is a synonym for ‘[^_[:alnum:]]’.
Match whitespace, it is a synonym for ‘[[:space:]]’.
Match non-whitespace, it is a synonym for ‘[^[:space:]]’.
For example, ‘\brat\b’ matches the separate word ‘rat’, ‘\Brat\B’ matches ‘crate’ but not ‘furry rat’.