Answers for "roblox studio find string in string"

2

how to fins certain peice of text in a string roblox

local str = "Roblox is a cool game"
str = str:lower()

if str:find("roblox") then
   print("found it in string")
end
Posted by: Guest on March-31-2020
0

string.match roblox

string.match(string, match) -- the first argument is your string, the second argument is your string that you want to find in the first argument
Posted by: Guest on November-07-2020

Browse Popular Code Answers by Language