Java String.endsWith(String suffix)
Syntax
String.endsWith(String suffix) has the following syntax.
public boolean endsWith(String suffix)
Example
In the following code shows how to use String.endsWith(String suffix) method.
public class Main {
public static void main(String[] argv) {
String str = "java2s.com";
String str2 = ".com";
System.out.println(str.endsWith(str2));
/*from w w w . j a v a 2 s. c om*/
}
}
The code above generates the following result.