Check if a particular string is starting with a specified word - Java Language Basics

Java examples for Language Basics:String

Description

Check if a particular string is starting with a specified word

Demo Code


public class Main {
 
  public static void main(String[] args) {
   /*www . ja va2 s .  c o  m*/
    //declare the original String
    String strOrig = "Hello World";
   
    if(strOrig.startsWith("Hello")){
      System.out.println("String starts with Hello");
    }else{
      System.out.println("String does not start with Hello");
    }
     
  }
}

Result


Related Tutorials