Answers for "if file starts with in node js"

8

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
Posted by: Guest on July-23-2019
0

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"));  
   }
}
Posted by: Guest on August-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language