当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Groovy endsWith()用法及代码示例



测试此字符串是否以指定的后缀结尾。

用法

Boolean endsWith(String suffix)

参数

  • 后缀 - 要搜索的后缀

返回值

如果参数所表示的字符序列是该对象所表示的字符序列的后缀,则该方法返回true;否则为假。请注意,如果参数是空字符串或等于由 equals(Object) 方法确定的此 String 对象,则结果将为真。

示例

以下是使用此方法的示例 -

class Example {
   static void main(String[] args) {
      String s = "HelloWorld";
		
      println(s.endsWith("ld"));
      println(s.endsWith("lo"));
      println("Hello".endsWith("lo"));
   } 
}

当我们运行上述程序时,我们将得到以下结果 -

true
false 
true 

相关用法


注:本文由纯净天空筛选整理自 Groovy - endsWith()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。