Jump to content

parsing strings.


Recommended Posts

$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?

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...