|
|
anatom(y|ies) matches anatomy and |
|
the specified pattern. You use
|
anatomies.
|
|
|
|
|
matches, known as captures,
|
from this type of subexpression. |
Matches x or y, where x and
y |
[abc]
|
|
|
|
|
characters.
|
[a-c]bc matches abc, bbc, and cbc.
|
|
|
|
[:alphanum:] matches alphanumeric |
Specifies a character class and |
|
matches any character in that
|
characters 0–9, A–Z, and a–z.
|
|
|
|
|
[:digit:] matches digits 0–9.
|
[:graph:] matches non-blank
|
|
|
|
|
except [:print:] includes the space
|
character.
|
Matches one collation element, |
|
|
|
|
[:upper:] matches all uppercase
|
alphabetic characters A–Z.
|
|
|
|
|
[==]
|
like a multicharacter element.
|
|
|