Java String endsWith()方法

2019-10-16 22:21:44

Java String endsWith()方法測試此字串是否以指定的字尾結尾。

語法
以下是此方法的語法 -

public boolean endsWith(String suffix)

引數

  • suffix - 指定的字串字尾。

返回值

如果引數表示的字元序列是該物件表示的字元序列的字尾,則此方法返回true; 否則返回false。 請注意,如果引數為空字串或等於此equals(Object)方法確定的String物件,則結果為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