Java 字符串 endsWith() 方法
示例
找出字符串是否以指定的字符结尾
String myStr = "Hello";
System.out.println(myStr.endsWith("Hel")); // false
System.out.println(myStr.endsWith("llo")); // true
System.out.println(myStr.endsWith("o")); // true
定义和用法
The endsWith()
方法检查字符串是否以指定的字符结尾。
提示: 使用 startsWith() 方法检查字符串是否以指定的字符 **开头**。
语法
public boolean endsWith(String chars)
参数值
参数 | 描述 |
---|---|
chars | A String , 代表要检查的字符 |
技术细节
返回 | A boolean value
|
---|
❮ 字符串方法