位置:首頁 > Java技術 > Java教學 > Java String endsWith()方法

Java String endsWith()方法

描述

此方法測試字符串是否以指定的後綴 suffix 結束。

語法

此方法定義的語法如下:

public boolean endsWith(String suffix)

參數

這裡是參數的細節:

  • suffix -- the 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