Learning Perl: 7.1. What Are Regular Expressions?

Previous Page

Next Page

 

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 don't. 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 Perl's 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".[

] That's 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.[

] You'll visit globs in Chapter 12.

[

] Globs are also (alas) sometimes called patterns. What's 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.

Previous Page

Next Page

相关文章

1. 如何去重 #!/usr/bin/perl use strict; my %hash; while(...
最近写了一个perl脚本,实现的功能是将表格中其中两列的数据...
表的数据字典格式如下:如果手动写MySQL建表语句,确认麻烦,...
巡检类工作经常会出具日报,最近在原有日报的基础上又新增了...
在实际生产环境中,常常需要从后台日志中截取报文,报文的形...
最近写的一个perl程序,通过关键词匹配统计其出现的频率,让...