string.find(str, pattern [, init [, plain]]) -- Returns start and end index of match in str
string.match(str, pattern [, index]) -- Matches a pattern once (starting at index)
string.gmatch(str, pattern) -- Returns a function that iterates through all matches in str
string.gsub(st...