Answers for "lua how to know if a in a string"

2

if string contains lua

str = "This is some text containing the word tiger."
if string.find(str, "tiger") then
  print ("The word tiger was found.")
else
  print ("The word tiger was not found.")
end
Posted by: Guest on July-15-2021

Code answers related to "lua how to know if a in a string"

Browse Popular Code Answers by Language