blublub Posted September 2, 2008 Posted September 2, 2008 how to divide a string in autoit ? for example i got a string looking like this 5213-4213-5324-4123 in a variable how can i divide it to get 4 variables containing only 4 successive numbers or just an array of all the symbols and then add the numbers in to strings of 4 numbers in other words i have $a=5213-4213-5324-4123 and i want to get: $b[0]=5213 $b[1]=4213 $b[2]=5324 $b[3]=4123 thx for help
Developers Jos Posted September 2, 2008 Developers Posted September 2, 2008 Look at StringSplit() in the helpfile. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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