Java的endsWith()函數用于判斷字符串是否以指定的后綴結束。它的用法如下:
String str = "Hello, World!";
// 判斷字符串是否以指定的后綴結束
boolean endsWithExclamation = str.endsWith("!"); // true
boolean endsWithComma = str.endsWith(","); // false
System.out.println(endsWithExclamation);
System.out.println(endsWithComma);
在上面的例子中,endsWith()函數分別判斷字符串str
是否以感嘆號!
或逗號,
結束。結果表明字符串str
以感嘆號!
結束(為true),但不以逗號,
結束(為false)。