Regular Expressions
Table 1-7 through Table 1-16
summarize the regular-expression
grammar and syntax supported by the
regular-expression classes in
System.Text.RegularExpressions. (For more
information, see the “.NET Framework Regular
Expressions” topic in the .NET Framework SDK
Documentation.) Each of the modifiers and qualifiers in the tables
can substantially change the behavior of the matching and searching
patterns. For further information on regular expressions, we
recommend the definitive Mastering Regular
Expressions
by Jeffrey E. F.
Friedl
(O’Reilly, 2002).
All the syntax described in the tables should match the Perl5 syntax, with specific exceptions noted.
Table 1-7. Character escapes
|
Escape code sequence |
Meaning |
Hexadecimal equivalent |
|---|---|---|
|
|
Bell |
|
|
|
Backspace |
|
|
|
Tab |
|
|
|
Carriage return |
|
|
|
Vertical tab |
|
|
|
Form feed |
|
|
|
Newline |
|
|
|
Escape |
|
|
|
ASCII character as octal | |
|
|
ASCII character as hex | |
|
|
ASCII control character | |
|
|
Unicode character as hex | |
|
|
A nonescape character |
As a special case: within a regular expression, \b
means word boundary, except in a [ ] set, in which
\b means the backspace
character.
Table 1-8. Substitutions
|
Expression |
Meaning |
|---|---|
|
|
Substitutes last substring matched by
|
|
|
Substitutes last substring matched by
( |
Substitutions are specified ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access