Answers for "lua check if string contains value"

1

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 check if string contains value"

Browse Popular Code Answers by Language