qwertylol Posted May 17, 2007 Posted May 17, 2007 $matches = StringRegExp($string, '[^0]{1,}', 3) _ArrayDisplay($matches, 'found') the above is used to parse strings like 0002342350023423400014234000234234. how do I tell how many items there are in that array? What I need to know is how many items there are in the array. how do I do it?
Gabburd Posted May 17, 2007 Posted May 17, 2007 Try looking at the UBound function, UBound($matches) should work nicely.
PsaltyDS Posted May 17, 2007 Posted May 17, 2007 Try looking at the UBound function, UBound($matches) should work nicely. I started writing this demo because I though StringRegExp() returned the count in [0], but it doesn't. Oh well: #include <array.au3> $string = "0002342350023423400014234000234234" $matches = StringRegExp($string, '[^0]{1,}', 3) _ArrayDisplay($matches, 'Got: ' & UBound($matches)) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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