string.find() can find anything in a string, so if it's a number you should use tostring(number)
string.find(string, lookfor, start)
string is the string that your looking in, lookfor is what your looking for inside the string, and start is at what part of the string does it start looking, you can put it at 1 to start at the beginning
string.find("string", "i", 1)
will return (4) because the i is located in the 4th string.sub |