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

【Perl】正则表达式元字符

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

1 simple

 

print "It matches\n" if "hello world" =~ /world/;
print "It doesn't match\n" if "hello world" !~ /word/;

$_ = "hello world";
print "it matches\n" if m{world};
print "it matches\n" if m!world!;
print "it matches\n" if m(world);
print "it matches\n" if m[world];

2 metacharacter

 
. 任意一个字符\n除外
+ 重复>=1次
* 重复>=0次
? 重复<=1次
$ 行尾
[] 字符类,匹配其中任意一个
() 组,在组中^$表行首行尾
\d [0-9]
\D [^0-9]
\s 空白字符
\S [^\s]
\w [0-9a-zA-Z]
\W [^\w]
\b 单词边界
//i case-insensitive
//g 多次匹配,函数pos记录其位置
s/// replace
s///r 返回替代结果但并不修改原来的值$_或用=~绑定的值
s///e 指明计算后的结果替代匹配的字符串

 

 

$x = "cat dog house";           # 3 words
while ($x =~ /(\w+)/g){
     print "Word is $1, ends at position ", pos $x, "\n";
}
# reverse all the words in a string
$x = "the cat in the hat";
$x =~ s/(\w+)/reverse $1/ge;   # $x contains "eht tac ni eht tah"

# convert percentage to decimal
$x = "A 39% hit rate";
$x =~ s!(\d+)%!$1/100!e;       # $x contains "A 0.39 hit rate"


Author: visaya fan <visayafan[AT]gmail.com or visayafan[AT]163.com>

Date: 2011-10-27 22:02:37

HTML generated by org-mode 6.33x in emacs 23


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
转:perl源码审计发布时间:2022-07-22
下一篇:
perl选项、特殊变量、一些函数参考手册发布时间: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