Java 字串 endsWith() 方法

Java endsWith 方法用於檢查字串是否以使用者指定的子字串結尾。根據比較結果,它將返回布林值 truefalse

語法

Public endsWith(suffix) 

引數

字尾 - 這是字尾。

返回值

  • false:字尾 中提供的字元序列與呼叫字串的結束序列不匹配
  • true:字尾 中提供的字元序列與呼叫字串的結束序列匹配

例外

沒有

例子

public class StringEx1 {
    public static void main(String[] args) {
        String str_Sample = "Java String endsWith example";
        //Check if ends with a particular sequence
        System.out.println("EndsWith character 'e': " + str_Sample.endsWith("e"));
        System.out.println("EndsWith character 'ple': " + str_Sample.endsWith("ple"));
        System.out.println("EndsWith character 'Java': " + str_Sample.endsWith("Java"));
    }
}

輸出:

EndsWith character 'e': true 
EndsWith character 'ple': true 
EndsWith character 'Java': false