Java examples for Language Basics:String
Check if a particular string is starting with a specified word
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"); } } }