How can I do a global regular expression match in Perl?

廉价感情. 提交于 2019-12-18 09:28:43

问题


I am trying to come up with a regular expression in Perl matching multiple patterns and returning all of them like preg_match_all in PHP does.

Here's what I have:

$str = 'testdatastring';
if($str =~ /(test|data|string)/) {
        print "its found index location: $0 $-[0]-$+[0]\n";
        print "its found index location: $1 $-[1]-$+[1]\n";
        print "its found index location: $2 $-[2]-$+[2]\n";
        print "its found index location: $3 $-[3]-$+[3]\n";
}

This only gives me the first match which in this is 'test'. I want to be able to match all occurrences of specified patterns: 'test', 'data' and 'string'.

I know that in PHP, you can use preg_match_all for this kind of purpose:

if(preg_match_all('/(test|data|string)/', 'testdatastring', $m)) {
        echo var_export($m, true);
}

The above PHP code would match all 3 strings: 'test', 'data' and 'string'.

I want to know how to do this in Perl. Any help would be greatly appreciated.


回答1:


The Perl equivalent to

preg_match_all('/(test|data|string)/', 'testdatastring', $m)

is

@m = ("testdatastring" =~ m/(test|data|string)/g);

The /g flag stands for global, so it returns a list of matches in list context.




回答2:


See http://www.anaesthetist.com/mnm/perl/regex.htm . Basic syntax (from there) is:

$_ = "alpha xbetay xgammay xdeltay so on";
($first, $second, $third) = /x(.+?)y/g;

Note the /g



来源:https://stackoverflow.com/questions/948795/how-can-i-do-a-global-regular-expression-match-in-perl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!