Java String endsWith() 方法

Java String endsWith() 方法

描述

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

语法

这是该方法的语法 −

public boolean endsWith(String suffix)

参数

以下是参数的详细信息:

  • suffix - 后缀。

返回值

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

示例

public class Test {

   public static void main(String args[]) {
      String Str = new String("This is really not immutable!!");
      boolean retVal;

      retVal = Str.endsWith( "immutable!!" );
      System.out.println("Returned Value = " + retVal );

      retVal = Str.endsWith( "immu" );
      System.out.println("Returned Value = " + retVal );
   }
}

这将产生以下结果 –

输出

Returned Value = true
Returned Value = false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程