Java 字符串 endsWith() 方法
Java endsWith
方法用于检查字符串是否以用户指定的子字符串结尾。根据比较结果,它将返回布尔值 true
或 false
。
语法
Public endsWith(suffix)
参数
后缀 - 这是后缀。
返回值
- false:
后缀
中提供的字符序列与调用字符串的结束序列不匹配 - true:
后缀
中提供的字符序列与调用字符串的结束序列匹配
例外
没有
例子
public class StringEx1 {
public static void main(String[] args) {
String str_Sample = "Java String endsWith example";
//Check if ends with a particular sequence
System.out.println("EndsWith character 'e': " + str_Sample.endsWith("e"));
System.out.println("EndsWith character 'ple': " + str_Sample.endsWith("ple"));
System.out.println("EndsWith character 'Java': " + str_Sample.endsWith("Java"));
}
}
输出:
EndsWith character 'e': true
EndsWith character 'ple': true
EndsWith character 'Java': false