startswith method code example
Example 1: javascript string starts with
//checks if a string starts with a word
function startsWith(str, word) {
return str.lastIndexOf(word, 0) === 0;
}
startsWith("Welcome to earth.","Welcome"); //true
Example 2: 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 3: 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
}
}