HeidiR Posted July 29, 2008 Posted July 29, 2008 Newbie question. Is there a way to type cast a string as an array? In PHP this looks like: $str = ""; $str_ar = (array)$str; If there is no way to type cast in AutoIt, is there a function to convert a string to an array? I found StringSplit() but wasn't sure if this was the best option. HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Moderators SmOke_N Posted July 29, 2008 Moderators Posted July 29, 2008 Newbie question. Is there a way to type cast a string as an array? In PHP this looks like: $str = ""; $str_ar = (array)$str; If there is no way to type cast in AutoIt, is there a function to convert a string to an array? I found StringSplit() but wasn't sure if this was the best option.AutoIt is a typeless language. Dim $a_str_array[1] Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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