例如:
判断字符串是否以指定的字符结尾:
String myStr = "Hello"; System.out.println(myStr.endsWith("Hel")); // false System.out.println(myStr.endsWith("llo")); // true System.out.println(myStr.endsWith("o")); // true
1、定义和用法
endsWith()
方法检查字符串是否以指定的字符结尾。
提示:使用startsWith()方法判断字符串是否以指定的字符开头。
2、调用语法
public boolean endsWith(String chars)
3、参数说明
参数 | 描述 |
chars |
|
4、方法说明
返回值: |
如果字符串不以指定的字符结尾,则为 |