How to check if the string starts with another in Java
In this tutorial, we are going to learn about how to check if a given string starts with another substring in Java.
Checking string starts with another
To check if a string starts with another or not, we can use the built-in startsWith() method in Java.
The startsWith() method takes the search string as an argument and returns true if a search string is found; otherwise, it returns false.
Here is an example:
String str = 'How are you';
System.out.println(str.startsWith("How"));Output:
trueNote: This above method is case-sensitive.


