Checking if string starts with a Specific word

 public class CheckStartWord{

public static void main(String args []){
String str = "Hello, How are you";

System.out.println(str.startsWith("Hello,"));
}
}

Google Script for Data Entry Form in Google Spreadsheet

// function to validate the entry made by user in user form function validateEntry (){ // declare a variable and referernece of active goog...