Hey guys! Can someone help me to find the line of a character or number in text?
I use 2 Text Plugins, 1 Text Box and 1 Button. So, we have:
Text1 (Original):
This is a test. Today! 10 Hello C2!!! 100[/code:184pmp0f] [code:184pmp0f]TextBox -> I write "Today!" Button -> Click[/code:184pmp0f] Text2 (Result): [code:184pmp0f]1[/code:184pmp0f] To understand more, the lines of text as i think are: "This is a test." is 0 "Today!" is 1 "10" is 2 "Hello C2!!!" is 3 "100" is 4 What i need to use? A Regex Search? Array? A simple method? Can someone help me? Thanks!
repeat tockencount(text1, newline) times
system compare: tockenat(text1, loopindex, newline) = textbox.text
--- set text2 to loopindex
--- stop loop
Develop games in your browser. Powerful, performant & highly capable.
Thank you!!! ; -)