IF TEST = 1 { ASSIGN Example1 = "Wes|Clay|Mark|Jed|Mike|Bill|Ryanne" ASSIGN Example2 = "The Avengers" } //Returns the character position of the text as contained within the variable. //The first position is 1. IF the text is not contained, the value 0 is returned. //The method is CASE sensitive. ASSIGN ArrayLoc = Example1.indexof('Jed') ASSIGN CharacterLoc = Example2.indexof('v') ASSIGN InvalidLoc = Example2.indexof('V')