免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1718 | 回复: 4
打印 上一主题 下一主题

请教个正则式的问题,谢谢 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-03-28 11:12 |只看该作者 |倒序浏览
my $str = '[9581:_Page::app_v:167]: c_uid=2mdG4Y59ZNIup0e, vp_user_id=76';
my $pat = 'c_uid=(\d|\w){15}, vp_user_id=\d+';
my @tmp = ();

if (@tmp = $str =~ /$pat/) {
        print "$&\n";
        print "@tmp\n";
        print scalar @tmp;
}

output:

c_uid=2mdG4Y59ZNIup0e, vp_user_id=76
e
1

-----------------------
为什么@tmp里放的不是$&呢?谢谢

论坛徽章:
0
2 [报告]
发表于 2007-03-28 15:09 |只看该作者

回复 1楼 nkcsx 的帖子

因为你用了(),在进行正则表达式匹配时,()中的内容会被记录,如果有多个(),则这些()中的内容可以依次以$1, $2, $3……访问。

本例中你用(\d|\w),相当于记录了匹配出的数字或字母,由于只有一个括号,所以记录了15个字母中的最后一个e。即$1 = e。

因为处在列表上下文环境中,这个$1被赋给了@tmp中的第一项(本例中这也是唯一一项,相当于@tmp = {$1})。这就是为什么你输出@tmp得到e。

我也是刚学perl,感觉是这样,你觉的呢?

评分

参与人数 1可用积分 +1 收起 理由
flw + 1 我很赞同

查看全部评分

论坛徽章:
0
3 [报告]
发表于 2007-03-28 15:22 |只看该作者
哦,这就是说如果在匹配的时候用小括号的话,返回的匹配列表实际上就是$1,$2...,只有在不使用小括号的时候才会返回整个匹配的串构成的列表。是这样么?

我将前面的代码改了一下
$pat = 'c_uid=\d{15}|\w{15}, vp_user_id=\d+';
$pat = 'c_uid=.{15}, vp_user_id=\d+';  #这个也一样

不使用括号的话,输出来的值也不是我预想的。
如下:
2mdG4Y59ZNIup0e, vp_user_id=76
1
1

这里出现的1又是什么呢,@tmp怎么会保存一个1?。

谢谢!

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2007-03-28 15:25 |只看该作者
原帖由 nkcsx 于 2007-3-28 15:22 发表
哦,这就是说如果在匹配的时候用小括号的话,返回的匹配列表实际上就是$1,$2...,只有在不使用小括号的时候才会返回整个匹配的串构成的列表。是这样么?

我将前面的代码改了一下
$pat = 'c_uid=\d{15}|\w{15} ...

perldoc perlop

论坛徽章:
0
5 [报告]
发表于 2007-03-28 17:14 |只看该作者
谢谢版主,自己回答一下。

If the /g option is not used, m// in list context returns a list consisting of the subexpressions matched by the parentheses in the pattern, i.e., ($1 , $2 , $3 ...). (Note that here $1 etc. are also set, and that this differs from Perl 4's behavior.) When there are no parentheses in the pattern, the return value is the list (1) for success. With or without parentheses, an empty list is returned upon failure.

The /g modifier specifies global pattern matching--that is, matching as many times as possible within the string. How it behaves depends on the context. In list context, it returns a list of the substrings matched by any capturing parentheses in the regular expression. If there are no parentheses, it returns a list of all the matched strings, as if there were parentheses around the whole pattern.

In scalar context, each execution of m//g finds the next match, returning true if it matches, and false if there is no further match. The position after the last match can be read or set using the pos() function; see pos. A failed match normally resets the search position to the beginning of the string, but you can avoid that by adding the /c modifier (e.g. m//gc). Modifying the target string also resets the search position.

[ 本帖最后由 nkcsx 于 2007-3-28 17:17 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP