Merchants Posted July 12, 2011 Posted July 12, 2011 i know that some programs have a multi func in textexample:inputbox: test1;test2;test3;that is in one text how do i splits it in arrys so...$text[0] = test1 $text[1] = test2 $text[2] = test3 Msgbox(64,"Inputbox", "Inputbox was: " & @CRLF & "$text[0] = " & $text[0] & @CRLF & "$text[1] = " & $text[1] & @CRLF & "$text[2] = " & $text[2])
sleepydvdr Posted July 12, 2011 Posted July 12, 2011 $text = StringSplit("test1;test2;test3", ";") #include <ByteMe.au3>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now