• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Perl 小知识之多行匹配

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

如果想匹配多行文本(即文本中有换行符)中的内容,比如:

1 aaa
2 
3 ...
4 
5 bbb
6 
7 ...

要匹配aaa和bbb之间的内容,我们可以使用 /aaa.*bbb/s

其中/s修饰符可以让.匹配任何字符,包括换行符。

不过,除此之外,我们可以使用..操作符:

/aaa..bbb/

就像sed命令一样:sed -n '/aaa/,/bbb/p' file

..操作符叫做区块运算符(Range Operator) ,这个运算符是 Perl 语言中特有的运算符,是一个很实用的运算符.  

比如: 

1 @digits=(1..9); #此时 @digits=(1,2,3,4,5,6,7,8,9);    
2 @digits=('01'..'05'); #此时 @digits=(01,02,03,04,05);    
3 @char=('A'..'E'); #此时 @char('A','B','C','D','E',);    
4 @total=(1..3'A'..'B'); #此时 @total=(1,2,3'A','B');

摘抄一段解释:

In scalar context, ".." returns a boolean value.  The operator is bistable, like a flip-flop, and emulates the line-range (comma) operator of sed, awk, and various editors.  Each ".." operator maintains its own boolean state.  It is false as long as its left operand is false. Once the left operand is true, the range operator stays true until the right operand is true, AFTER which the range operator becomes false again.  It doesn't become false till the next time the range operator is evaluated.  It can test the right operand and become false on the same evaluation it became true (as in awk), but it still returns true once.  If you don't want it to test the right operand till the next evaluation, as in sed, just use three dots ("...") instead of two.  In all other regards, "..." behaves just like ".." does.

即..和...的差别在于:当一个..flip-flop为true时,它会返回true,同时测试它的右侧表达式以决定是否需要将其内部状态设置回false;而对于...flip-flop来说,它等到下一次求值的时候才测试其右侧表达式。观察下面的代码:

1 (1..10).each {|x| print x if x==3..x>=3}
2 # Prints "3"  .  Flips and flops back  when x==3
3 
4 (1..10).each {|x| print x if x==3...x>=3}
5 # Print "34" .   Flis when x==3 and flops when x==4

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
perl中数组函数:delete和grep发布时间:2022-07-22
下一篇:
安装你自己的perl modules发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap