startsWith()

Tests whether or not a String starts with the characters of another String. myString.startsWith(myString2)
myString: a variable of type String. myString2: a variable of type String. true: if myString starts with the characters of myString2. false: otherwise