w3resource

Java: Check whether a given string starts with the contents of another string

Java String: Exercise-26 with Solution

Write a Java program to check whether a given string starts with another string.

Visual Presentation:

Java String Exercises: Check whether a given string starts with the contents of another string

Sample Solution:

Java Code:

// Define a public class named Exercise26.
public class Exercise26 {
    
    // Define the main method.
    public static void main(String[] args) {
        // Declare and initialize two string variables.
        String str1 = "Red is favorite color.";
        String str2 = "Orange is also my favorite color.";

        // The String to check the above two Strings to see
        // if they start with this value (Red).
        String startStr = "Red";

        // Check if the first two Strings start with startStr.
        boolean starts1 = str1.startsWith(startStr);
        boolean starts2 = str2.startsWith(startStr);

        // Display the results of the startsWith calls.
        System.out.println(str1 + " starts with " +
             startStr + "? " + starts1);
        System.out.println(str2 + " starts with " +
             startStr + "? " + starts2);
    }
}

Sample Output:

Red is favorite color. starts with Red? true                                                                  
Orange is also my favorite color. starts with Red? false

Flowchart:

Flowchart: Java String Exercises - Check whether a given string starts with the contents of another string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to replace each substring of a given string that matches the given regular expression with the given replacement.
Next: Write a Java program to get a substring of a given string between two specified positions.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.