groovy 字符串包含
时间: 2023-09-24 13:03:33 浏览: 133
Groovy语法系列教程之字符串(三).pdf
在 Groovy 中,可以使用 `contains()` 方法来判断一个字符串是否包含另一个字符串。例如:
```groovy
def str1 = "hello world"
def str2 = "world"
if (str1.contains(str2)) {
println "str1 contains str2"
} else {
println "str1 does not contain str2"
}
```
在上面的代码中,`contains()` 方法判断 `str1` 是否包含 `str2`,如果包含则输出 "str1 contains str2",否则输出 "str1 does not contain str2"。
阅读全文