Hello, could someone give me an example of how to use string.find
cant understandā¦
string.find("Hello this is a message", "message")
should return 17, then 23 (āmessageā starts at the 17th character, and ends at the 23rd)
I more use it just to see if a word is in a string first though, such as:
if string.find("Somebody once told me", "once") then
Thank you very much it was very helpful!