Java String endsWith()方法用于检查字符串的后缀。它验证给定的字符串是否以参数字符串结尾。
endsWith(String str) 方法
用于检查字符串是否以后缀参数 string 结尾的 Java 程序’str’。
public static void main(String[] args) {
String domain = "www.mapull.com";
System.out.println( domain.endsWith("com") ); //true
System.out.println( domain.endsWith("*.com") ); //false
System.out.println( domain.startsWith("www") ); //true
System.out.println( domain.endsWith(null) ); //java.lang.NullPointerException
}
StringendsWith()方法不接受正则表达式作为参数。如果我们将正则表达式模式作为参数传递,它将仅被视为普通字符串。
null 不允许作为 endsWith() 方法的方法参数。否则,它将抛出NullPointerException。