How can I find index location of the string "example" from text "this is an example of a text"
find(string, "example") will return a zero-based index.
If I want to find Index of "example" from the text "this is an example of a text" and answer should be 3
Try this.
loopindex +1, Will return 4
or loopindex will return 3
Develop games in your browser. Powerful, performant & highly capable.
Thanks it worked