how to write condition to check if sring begin with letters in java code example

Example 1: how to check string start with #

public class JavaExample{  
   public static void main(String args[]){ 
	//given string
	String s = "   This is just a sample string";  
		
	//checking whether the given string starts with "This"
	System.out.println(s.startsWith("This"));  
		
	//checking whether the given string starts with "Hi"
	System.out.println(s.startsWith("Hi"));  
   }
}

Example 2: java string contains at beginning

public class StringExample 
{
    public static void main(String[] args) 
    {
        String blogName = "howtodoinjava.com";
         
        System.out.println( blogName.startsWith("how") );               //true
         
        System.out.println( "howtodoinjava.com".startsWith("howto") );  //true
         
        System.out.println( "howtodoinjava.com".startsWith("hello") );  //false
    }
}

Tags: