Chapter 32. Regular Expressions (Pattern Matching)

That’s an Expression

When my young daughter is struggling to understand the meaning of an idiomatic expression, such as, “Someone let the cat out of the bag,” before I tell her what it means, I have to tell her that it’s an expression, that she’s not to interpret it literally. (As a consequence, she also uses “That’s just an expression” to qualify her own remarks, especially when she is unsure about what she has just said.)

An expression, even in computer terminology, is not something to be interpreted literally. It is something that needs to be evaluated.

Many Unix programs use a special “regular expression syntax” for specifying what you could think of as “wildcard searches” through files. Regular expressions describe patterns, or sequences of characters, without necessarily specifying the characters literally. You’ll also hear this process referred to as " pattern matching.”

In this chapter, we depart a bit from the usual “tips and tricks” style of the book to provide an extended tutorial about regular expressions that starts in Section 32.4. We did this because regular expressions are so important to many of the tips and tricks elsewhere in the book, and we wanted to make sure that they are covered thoroughly.

This tutorial article is accompanied by a few snippets of advice (Section 32.16 and Section 32.18) and a few tools that help you see what your expressions are matching (Section 32.17). There’s also a quick reference (Section ...

Get Unix Power Tools, 3rd Edition 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.