Java.lang.String 类

java.lang.String.endsWith() 方法用于检查字符串是否以指定后缀结尾。当字符串以指定后缀结尾时返回 true,否则返回 false。

语法

public boolean endsWith(String suffix) 

参数

suffix指定后缀。

返回值

如果表示的字符序列返回 true参数是该对象表示的字符序列的后缀;否则为假。请注意,如果参数为空字符串或等于由 equals(Object) 方法确定的此 String 对象,则结果将为 true。

Exception

无。

示例:

在下面的示例中,endsWith()方法用于检查名为MyString的字符串是否以指定后缀结尾

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    String MyString = "Hello World!";

    System.out.println(MyString.endsWith("Hello")); 
    System.out.println(MyString.endsWith("World!"));  
  }
} 

上述代码的输出将是:

false
true