July 2008
Beginner
356 pages
6h 8m
English
When you use regular expressions (discussed in Chapter 4), you can match literal strings, for example:
>>> "some text".match(/me/)
["me"]
But the true power of regular expressions comes from matching patterns, not literal strings. The following table describes the different syntax you can use in your patterns, and provides some examples of their use.
|
Pattern |
Description |
|---|---|
|
|
Matches a class of characters. >>> "some text".match(/[otx]/g) ["o", "t", "x", "t"] |
|
|
A class of characters defined as a range. For example >>> "Some Text".match(/[a-z]/g) ["o", ... |
Read now
Unlock full access