微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Learning Perl: 8.1. Matches with m//

Previous Page

Next Page

 

8.1. Matches with m//

We've been writing patterns in pairs of forward slashes,like /fred/. This is a shortcut for the m// (pattern match) operator. As you saw with the qw// operator,you may choose any pair of delimiters to quote the contents. So,you Could write that same expression as m(fred),m<fred>,m{fred},or m[fred] using those paired delimiters,or as m,fred,,m!fred!,m^fred^,or many other ways using nonpaired delimiters. [*]

[*] Nonpaired delimiters are the ones that don't have a different "left" and "right" variety; the same punctuation mark is used for both ends.

The shortcut is that if you choose the forward slash as the delimiter,you may omit the initial m. Since Perl folks love to avoid typing extra characters,you'll see most pattern matches written using slashes,as in /fred/.

Choose a delimiter that doesn't appear in your pattern.[

] If you wanted to make a pattern to match the beginning of an ordinary web URL,you might write /http:///// to match the initial "http://". But that'll be easier to read,write,maintain,and debug if you use a better choice of delimiter: m%http://%.[

]
It's common to use curly braces as the delimiter. If you use a programmer's text editor,it probably has the ability to jump from an opening curly brace to the corresponding closing one,which can be handy in maintaining code.

[

] If you're using paired delimiters,generally you shouldn't have to worry about using the delimiter inside the pattern since that delimiter generally will be paired inside your pattern. That is,m(fred(.*)barney) and m{/w{2,}} and m[wilma[/n /t]+betty] are all fine even though the pattern contains the quoting character,since each "left" has a corresponding "right." But the angle brackets (< and >) aren't regular expression Metacharacters,so they may not be paired. If the pattern were m{(/d+)/s*>=?/s*(/d+)},quoting it with angle brackets would mean having to backslash the greater-than sign so that it wouldn't prematurely end the pattern.

[

] Remember,the forward slash is not a Metacharacter,so you don't need to escape it when it's not the delimiter.

Previous Page

Next Page

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐