简单的Groovy Matcher

vsnjm48y  于 2022-10-07  发布在  其他
关注(0)|答案(1)|浏览(150)

我在试着理解为什么它总是会回来,“它会被阻止的”:

def test = "started"

if (test  ==~ "deallocated"||"stopped") {
println "it will be stopped"
}

我是新手,还在学习,我不明白为什么这个IF条件不起作用。

oxcyiej7

oxcyiej71#

匹配器中的OR应如下所示:

def test = "stopped"

if (test  ==~ "deallocated|stopped") {
    println "it will be stopped"
}

相关问题