Java String endsWith() 方法
描述
此方法测试该字符串是否以指定的后缀结尾。
语法
这是该方法的语法 −
public boolean endsWith(String suffix)
参数
以下是参数的详细信息:
- 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