當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java String endsWith()用法及代碼示例


Java字符串endsWith()方法檢查字符串是否以指定的後綴結尾。此方法返回布爾值true或false。

簽名:

public boolean endsWith(String suff)     

參數:


suff- specified suffix part 

返回:

true or false

例:展示endsWith()方法的用法原理

// Java program to demonstrate 
// working of endsWith() method 
  
class Gfg1 { 
    public static void main(String args[]) 
    { 
        String s = "Welcome! to GeeksforGeeks"; 
  
        // Output will be true as s ends with Geeks 
        boolean gfg1 = s.endsWith("Geeks"); 
        System.out.println(gfg1); 
    } 
}

輸出:

true
// Java program to demonstrate 
// working of endsWith() method 
  
class Gfg2 { 
    public static void main(String args[]) 
    { 
        String s = "Welcome! to GeeksforGeeks"; 
  
        // Output will be false as s does not 
        // end with "for" 
        boolean gfg2 = s.endsWith("for"); 
        System.out.println(gfg2); 
    } 
}

輸出:

false
// Java program to demonstrate 
// working of endsWith() method 
  
class Gfg3 { 
    public static void main(String args[]) 
    { 
        String s = "Welcome! to GeeksforGeeks"; 
  
        // Output will be true if the argument 
        // is the empty string 
        boolean gfg3 = s.endsWith(""); 
        System.out.println(gfg3); 
    } 
}

輸出:

true


相關用法


注:本文由純淨天空篩選整理自Niraj_Pandey大神的英文原創作品 Java String endsWith() with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。