编程语言
首页 > 编程语言> > Python相当于Perl $aka $LAST_PAREN_MATCH

Python相当于Perl $aka $LAST_PAREN_MATCH

作者:互联网

(如果这是重复的道歉,但不可能google / search $!)

我正在寻找与Perl的$aka $LAST_PAREN_MATCH最接近/最佳等价物.

对于那些不了解Perl的人来说,它的描述如下:

$LAST_PAREN_MATCH
$+      The text matched by the last bracket of the last successful search
        pattern. This is useful if you don't know which one of a set of
        alternative patterns matched.

也就是说,如果我有一个像(b)|(a)|(r)这样的模式,那么$将包含b,a或r,具体取决于匹配的子模式.

我拥有的最好的是

next((g for g in reversed(match.groups(None)) if g is not None),None)[0]

对于长期的Perl黑客而言,这似乎是一个简单的代码.
(不是说我不知道​​我可以将它包装在函数last_paren_match(匹配)中:-)

解决方法:

在Python中可能没有等价物,但是如果你使用分支重置模式(?| …)则每个交替管道都有在模式中将重置捕获变量的计数器.我很确定Python会支持它

在此示例中,所有捕获组都保存在$1中

use strict;
use warnings 'all';
use feature 'say';

'zax' =~ /(?|(b)|(a)|(r))/;

say $1;

产量

a

标签:python,perl,regex-group
来源: https://codeday.me/bug/20190724/1523431.html