gpt4 book ai didi

perl - (m/regexp/)或{multiple;命令;后;要么; }

转载 作者:行者123 更新时间:2023-12-03 07:45:18 25 4
gpt4 key购买 nike

我非常喜欢这种语法:

try_something() or warn "Cant do it"; 

如何在 or之后添加更多命令?

例如,在以下代码中将很有用:
foreach (@array)
{
m/regex/ or {warn "Does not match"; next;} # this syntax is wrong
...
}

我发现的一种方法是
try_something() or eval {warn "Can't do it"; next;}; 

但我认为这是个坏主意。

最佳答案:
  • doeval更好。
  • 逗号运算符甚至更好:do_smth() or warn("Does not match"), next;注意:warn必须带括号,这样next不会解析为其参数之一。
  • 最佳答案

    对于您的问题,我将使用unless

    for (@array) {
    unless (/regex/) {
    warn "Does not match";
    next;
    }

    ...
    }

    有时您可以使用 comma operator摆脱困境。它评估其左手参数,丢弃结果,评估右手参数并返回该结果。适用于您的情况看起来像
    for (@array) {
    /regex/ or warn("Does not match"), next;

    ...
    }

    注意多余的括号。您必须对括号和以这种方式分组更加谨慎。在使用此技术时要谨慎:它很快就会变得丑陋。

    在下面的评论中,扎伊德建议
    warn('Does not match'), next unless /regex/;

    选择取决于风格。 Perl由语言学家创建。自然语言使我们可以根据要强调的部分以不同的方式表达相同的思想。在您的情况下,您要强调警告还是模式匹配?将更重要的代码放在前面。

    关于perl - (m/regexp/)或{multiple;命令;后;要么; },我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10799063/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com