Java Tutorials
Groovy Script Tutorial for Beginners
What is a Groovy Script? Apache Groovy is an object oriented and Java syntax compatible...
The Java String endsWith() method is used to check whether the string is ending with user-specified substring or not. Based on this comparison it returns the result in boolean value true if the specific suffix is matched or it returns false if the suffix does not match.
Syntax
Public endsWith(suffix)
Parameters
suffix – This is a suffix.
Return Value
Exception
None
Example:
public class StringEx1 { public static void main(String[] args) { String str_Sample = "Java String endsWith example"; //Check if ends with a particular sequence System.out.println("EndsWith character 'e': " + str_Sample.endsWith("e")); System.out.println("EndsWith character 'ple': " + str_Sample.endsWith("ple")); System.out.println("EndsWith character 'Java': " + str_Sample.endsWith("Java")); } }
Output:
EndsWith character 'e': true
EndsWith character 'ple': true
EndsWith character 'Java': false
The java.lang.String.endsWith() returns true if this string ends with the specified suffix.
What is a Groovy Script? Apache Groovy is an object oriented and Java syntax compatible...
What is Java? Java is a multi-platform, object-oriented, and network-centric, programming...
What is JSON? JSON is an abbreviation for Javascript Object Notation, which is a form of data that...
Javascript Training Summary JavaScript is an open source & most popular client side scripting...
What is JVM? Java Virtual Machine (JVM) is a engine that provides runtime environment to drive the Java...
Java Tutorial Summary This Java tutorial for beginners is taught in a practical GOAL-oriented way....