Groovy -endsWith()


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

句法

Boolean endsWith(String suffix)

参数

  • 后缀 – 要搜索的后缀

返回值

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

例子

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

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_strings.htm