你如何把评论放在Perl正则表达式中?
使用/ x修饰符:
原文链接:https://www.f2er.com/regex/357121.htmlmy $foo = "zombies are the bombies"; if ($foo =~ / zombie # sorry pirates /x ) { print "urg. brains.\n"; }
另请参阅perl6faq中的first question.
当你在这个时候读完所有的perlre也不会伤害它.