Print substring of a String

 public class PrintSubString{

public static void main(String args[]){
String s = "corejavacourse";

System.out.println(s.substring(5)); // from 5th character to end of of the string will print
System.out.println(s.substring(5,8)); //only three character will print i.e 5,6,7...
}
}

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...