groovy实现根据字符串前缀的判断
时间: 2023-07-30 16:04:14 浏览: 434
Groovy语法系列教程之字符串(三).pdf
你可以使用Groovy中的`startsWith()`方法来判断一个字符串是否以指定的前缀开头。以下是一个示例代码:
```groovy
def str = "hello world"
if (str.startsWith("hello")) {
println("字符串以 hello 开头")
} else {
println("字符串不以 hello 开头")
}
```
输出结果为:
```
字符串以 hello 开头
```
你也可以使用`endsWith()`方法来判断一个字符串是否以指定的后缀结尾。例如:
```groovy
def str = "hello world"
if (str.endsWith("world")) {
println("字符串以 world 结尾")
} else {
println("字符串不以 world 结尾")
}
```
输出结果为:
```
字符串以 world 结尾
```
希望能帮到你!
阅读全文