Rishav Posted March 21, 2009 Posted March 21, 2009 Hi folksa very elementary questionI have a variable $daycat=101Now I want to read the variable value into a single dimension array like$ARRAY[1]=1$ARRAY[2]=0$ARRAY[3]=1do we have any command similar to$ARRAY=writeintoarray($daycat)in autoit?thanks and regardsRishav
Skizmata Posted March 21, 2009 Posted March 21, 2009 #include <array.au3> $daycat = 101 $array = StringSplit($daycat,"") _ArrayDisplay($array) Like that only the [0] is set to the number of elements in the array. AutoIt changed my life.
Rishav Posted March 21, 2009 Author Posted March 21, 2009 Thanks Skiz. I am gonna give it a whirl right now.
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