w3resource

Java: Check if a string starts with a specified word


String Starts with Word

Write a Java program to check if a string starts with a specified word.

Sample Data: string1 = "Hello how are you?"

Pictorial Presentation:

Java Basic Exercises: Check if a string starts with a specified word


Sample Solution:

Java Code:

import java.util.*;
import java.io.*;

public class Exercise85 {
    public static void main(String[] args) {
        // Initialize a string
        String string1 = "Hello how are you?";
        
        // Check if the string starts with "Hello"
        boolean startsWithHello = string1.startsWith("Hello");
        
        // Print the result indicating whether the string starts with "Hello"
        System.out.println(startsWithHello);
    }
}

Sample Output:

true

Flowchart:

Flowchart: Java exercises: Check if a string starts with a specified word


For more Practice: Solve these Related Problems:

  • Modify the program to check if a string ends with a specific word.
  • Write a program to check if a string contains a specific word anywhere.
  • Modify the program to check for case-insensitive matches.
  • Write a program to replace the first word in a string with another word.

Go to:


PREV : Add Last 3 Chars to Both Ends.
NEXT : Collatz Conjecture Simulation.


Java Code Editor:

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.