string starts with code example
Example 1: javascript word start with
const str = "Saturday night plans";
const res = str.startsWith("Sat");
console.log(res); //> true
Example 2: 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 3: java string contains at beginning
public class StringExample
{
public static void main(String[] args)
{
String blogName = "howtodoinjava.com";
blogName.startsWith(null);
}
}
Example 4: check if js string begin with word
const str1 = 'Saturday night plans';
console.log(str1.startsWith('Sat'));
// expected output: true
console.log(str1.startsWith('Sat', 3));
// expected output: false
Example 5: 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"));
}
}