Java endsWith() 字符串方法

  • 定义和用法

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

    public boolean endsWith(String chars)
  • 参数

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

    找出字符串是否以指定的字符结尾:
    public class MyClass {
      public static void main(String[] args) {
        String myStr = "Hello";
        System.out.println(myStr.endsWith("Hel"));   // false
        System.out.println(myStr.endsWith("llo"));   // true
        System.out.println(myStr.endsWith("o"));     // true
      }
    }
    
    尝试一下
  • 技术细节

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