Section 7.1. What Are Regular Expressions?


7.1. What Are Regular Expressions?

A regular expression, often called a pattern in Perl, is a template that matches or doesn't match a given string.[] An infinite number of possible text strings exist, and a given pattern divides that infinite set into two groups: the ones that match and the ones that dont. There's never any kinda-sorta-almost-up-to-here wishy-washy matching: either it matches or it doesn't.

[] Purists would ask for a more rigorous definition. But then again, purists say that Perls patterns aren't really regular expressions. If you're serious about regular expressions, we recommend the book Mastering Regular Expressions by Jeffrey Friedl (O'Reilly).

A pattern may match one possible string, two or three, a dozen, a hundred, or an infinite number. It may match all strings except for one, except for some, or except for an infinite number.[*] We've referred to regular expressions as being little programs in their own simple programming language. It's a simple language because the programs have one task: to look at a string and say "it matches" or "it doesn't match".[] Thats all they do.

[*] As you'll see, you could have a pattern that always matches or that never does. In rare cases, even these may be useful, but generally they're mistakes.

[] The programs also pass back some information that Perl can use later. One such piece of information is the "regular expressions memories that you'll learn about a little later.

One of the places you're likely to have seen regular expressions is in the Unix grep command, which prints out text lines matching a given pattern. For example, if you wanted to see which lines in a given file mention flint and, somewhere later on the same line, stone, you might do something like this with the Unix grep command:

     $ grep 'flint.*stone' chapter*.txt     chapter3.txt:a piece of flint, a stone which may be used to start a fire by striking     chapter3.txt:found obsidian, flint, granite, and small stones of basaltic rock, which     chapter9.txt:a flintlock rifle in poor condition. The sandstone mantle held several

Don't confuse regular expressions with shell filename-matching patterns, called globs. A typical glob is what you use when you type *.pm to the Unix shell to match all filenames that end in .pm. The previous example uses a glob of chapter*.txt. (You may have noticed that you had to quote the pattern to prevent the shell from treating it like a glob.) Though globs use many of the same characters you use in regular expressions, those characters are used in different ways.[] Youll visit globs in Chapter 12.

[] Globs are also (alas) sometimes called patterns. Whats worse is that some bad Unix books for beginners (and possibly written by beginners) have taken to calling globs "regular expressions," which they certainly are not. This confuses many folks at the start of their work with Unix.



Learning Perl
Learning Perl, 5th Edition
ISBN: 0596520107
EAN: 2147483647
Year: 2003
Pages: 232

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net