java.lang.String.endsWith()方法範例


java.lang.String.endsWith() 方法返回測試此字串是否以指定的字尾結束。

宣告

以下是java.lang.String.endsWith()方法的宣告

public boolean endsWith(String suffix)

引數

  • suffix -- 這是字尾。

返回值

如果該引數所表示的字元序列是由該物件表示的字元序列的字尾這個方法返回true,否則返回false。

異常

  • NA

例子

下面的例子顯示java.lang.String.endsWith()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    String str = "www.tw511.com";
    System.out.println(str);

    // the end string to be checked
    String endstr1 = ".com";
    String endstr2 = ".org";

    // checks that string str ends with given substring
    boolean retval1 = str.endsWith(endstr1);
    boolean retval2 = str.endsWith(endstr2);

    // prints true if the string ends with given substring
    System.out.println("ends with " + endstr1 + " ? " + retval1);
    System.out.println("ends with " + endstr2 + " ? " + retval2);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

www.yiibai.com
ends with .com ? true
ends with .org ? false