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.
Here is the syntax of this method:
public boolean endsWith(String suffix)
Here is the detail of parameters −
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:
Returned Value = true Returned Value = false
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.