manpagez: man pages & more
info grep
Home | html | info | man
[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3 The Backslash Character and Special Expressions

The ‘\’ character, when followed by certain ordinary characters, takes a special meaning:

\b

Match the empty string at the edge of a word.

\B

Match the empty string provided it’s not at the edge of a word.

\<

Match the empty string at the beginning of word.

\>

Match the empty string at the end of word.

\w

Match word constituent, it is a synonym for ‘[[:alnum:]]’.

\W

Match non-word constituent, it is a synonym for ‘[^[:alnum:]]’.

\s

Match whitespace, it is a synonym for ‘[[:space:]]’.

\S

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’.


This document was generated on November 17, 2011 using texi2html 5.0.

© manpagez.com 2000-2024
Individual documents may contain additional copyright information.