字符串 endsWith()
方法的语法为:
string.endsWith(String str)
在这里, 字符串是String
类的对象。
EndsWith()参数
endsWith()
方法采用单个参数。
- str-检查字符串是否以
str
结尾
EndsWith()返回值
- 如果字符串以给定字符串结尾,则返回true
- 如果字符串不以给定的字符串结尾,则返回false
示例:不带偏移参数的Java endWith()
class Main {
public static void main(String[] args) {
String str = "Java Programming";
System.out.println(str.endsWith("mming")); // true
System.out.println(str.endsWith("g")); // true
System.out.println(str.endsWith("a Programming")); // true
System.out.println(str.endsWith("programming")); // false
System.out.println(str.endsWith("Java")); // false
}
}
从上面的示例可以看到, endsWith()
考虑大小写(小写和大写)。
如果你需要检查字符串是否与指定的字符串开头或不使用Java字符串startsWith()方法。