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.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable