Java String endsWith() 方法

实例

找出字符串是否以指定字符结尾:

  1. public class Main {
  2. public static void main(String[] args) {
  3. String myStr = "Hello";
  4. System.out.println(myStr.endsWith("Hel"));
  5. System.out.println(myStr.endsWith("llo"));
  6. System.out.println(myStr.endsWith("o"));
  7. }
  8. }

定义与用法

endsWith() 方法检查字符串是否以指定的字符结尾。

提示:使用 startsWith() 方法检查字符串是否以指定的字符开头。


语法


参数值

参数描述
chars一个字符串,表示要检查的字符

技术细节

返回:一个 boolean 值:
  • true - 如果字符串以指定字符结尾
  • false - 如果字符串未以指定字符结尾

分类导航