📅  最后修改于: 2023-12-03 15:31:32.097000             🧑  作者: Mango
在Java中,String类提供了一个endsWith()方法,用于检查当前字符串是否以指定的后缀结尾。本文将介绍endsWith()方法的语法、示例和注意事项。
public boolean endsWith(String suffix)
suffix:要检查的后缀字符串
如果当前字符串以指定的后缀结尾,则返回true;否则返回false。
以下是endsWith()方法的示例:
String str1 = "hello world";
System.out.println(str1.endsWith("world")); // true
System.out.println(str1.endsWith("o")); // false
String str2 = "java is cool";
System.out.println(str2.endsWith("cool")); // true
System.out.println(str2.endsWith("Java")); // false
在上面的示例中,我们创建了两个字符串变量str1和str2,并使用endsWith()方法检查它们的结尾是否为指定的字符串。第一个示例输出true,因为"hello world"字符串以"world"结尾。第二个示例输出false,因为"hello world"字符串没有以"o"结尾。
endsWith()方法是一个非常有用的字符串方法,可用于检查字符串是否以指定的后缀结尾。通过掌握endsWith()方法的语法和示例,您可以更好地理解该方法的功能,并在Java中更有效地使用字符串。