Hi all, I'm quite new to strings and stuff~ I've checked out the tutorials, but can't help but wonder if there are easier ways to search for certain character through a string of nums and letters?
myString = "Where is the King";
result = myString.indexOf("King");
.......to find the word King in a string, and variable "result" will show the number 14 ( as King starts at the 14th character ). If the word king is not present you would get -1