Appendix D. Regular Expressions
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", ... |
Get Object-Oriented JavaScript now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.