regex – perl case insensitive switch as variable?

前端之家收集整理的这篇文章主要介绍了regex – perl case insensitive switch as variable?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在perl中,我希望能够这样做:
$switches = "is";
$regexp = "\\d";
if ($string =~ m/$regexp/$switches) {
 do something...
}

换句话说,如何在运行时使“$switches”可选?
(用户可以从各种搜索选项中进行选择)

解决方法

if ($string =~ /(?$flags:$pattern)/) {
   ...
}

注意:如果$pattern是一个编译模式(即由qr //生成)而不是字符串,这将不起作用,因为它是传递给qr //的标志,它影响用qr //编译的模式.您必须将标志传递给qr //而不是m //.

原文链接:https://www.f2er.com/Perl/171951.html

猜你在找的Perl相关文章