logo

Java String EndsWith() Method


Show

Description

Java String endsWith(String suffix) way checks whether the String conclusions with a particular suffix. This technique revisits a boolean character true or false. If the particular suffix is set up at the end of the string then it revisits true else it arrivals false.

Syntax

Here is the syntax of this method:

public boolean endsWith(String suffix)

Parameters

Here is the detail of parameters −

  • suffix − the suffix.

Return Value

  • This method returns true if the character sequence represented by the argument is a suffix of the character sequence represented by this object; false otherwise. Note that the result will be true if the argument is the empty string or is equal to this String object as determined by the equals(Object) method.

Example

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 );
   }
}

This will produce the following result:

Output

Returned Value = true
Returned Value = false

Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.