endsWith()
优质
小牛编辑
125浏览
2023-12-01
测试此字符串是否以指定的后缀结尾。
语法 (Syntax)
Boolean endsWith(String suffix)
参数 (Parameters)
后缀 - 要搜索的后缀
返回值 (Return Value)
如果参数表示的字符序列是该对象表示的字符序列的后缀,则此方法返回true; 否则是假的。 请注意,如果参数为空字符串或等于此equals(Object)方法确定的String对象,则结果为true。
例子 (Example)
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
String s = "HelloWorld";
println(s.endsWith("ld"));
println(s.endsWith("lo"));
println("Hello".endsWith("lo"));
}
}
当我们运行上述程序时,我们将得到以下结果 -
true
false
true