If I have a search box and want to find if a string contains certain words (not case sensitive) and/or numbers.
search = "Brown lazy 46"
textline = "The quick brown fox jumped over 46 lazy dogs"
if string.match(textline, search) then
result = textline
end
just like a web search.