qr EXPR |
这个操作符引用的字符串STRING作为一个正则表达式。STRING被内插在m/ PATTERN / PATTERN相同的方式。
返回一个Perl值可以使用的,而不是相应的/STRING/表达。
$rex = qr/my.STRING/is; s/$rex/foo/; is is equivalent to s/my.STRING/foo/is;
该结果可以被用作子模式中的匹配:
$re = qr/$pattern/;
$string =~ /foo${re}bar/; # can be interpolated in other patterns
$string =~ $re; # or used standalone
$string =~ /$re/; # or this way