Java String endsWith()方法
描述
此方法测试字符串是否以指定的后缀 suffix 结束。
语法
此方法定义的语法如下:
public boolean endsWith(String suffix)
参数
这里是参数的细节:
-
suffix -- the suffix.
返回值:
-
此方法如果参数所表示的字符序列是由该对象表示的字符序列的后缀返回true, 否则为false; 请注意,如果参数是空字符串或等于此String对象由equals(Object)方法确定结果为 true。
例子:
public class Test{ public static void main(String args[]){ String Str = new String("This is really not immutable!!"); boolean retVal; retVal = Str.endsWith( "immutable!!" ); System.out.println("Returned Value = " + retVal ); retVal = Str.endsWith( "immu" ); System.out.println("Returned Value = " + retVal ); } }
这将产生以下结果:
Returned Value = true Returned Value = false