Jump to content

array


yucatan
 Share

Recommended Posts

hello guys how can i check de size of a array

when i do this

$avArray[0] = "JPM"

$avArray[1] = "Holger"

$avArray[2] = "Jon"

$avArray[3] = "Larry"

$avArray[4] = "Jeremy"

$avArray[5] = "Valik"

$avArray[6] = "Cyberslug"

$avArray[7] = "Nutster"

$avArray[8] = "JdeB"

$avArray[9] = "Tylo"

he needs to return 9 because there are 9 entry's in the array..

pleas help me out

Link to comment
Share on other sites

hello guys how can i check de size of a array

when i do this

$avArray[0] = "JPM"

$avArray[1] = "Holger"

$avArray[2] = "Jon"

$avArray[3] = "Larry"

$avArray[4] = "Jeremy"

$avArray[5] = "Valik"

$avArray[6] = "Cyberslug"

$avArray[7] = "Nutster"

$avArray[8] = "JdeB"

$avArray[9] = "Tylo"

he needs to return 9 because there are 9 entry's in the array..

pleas help me out

hi,

1st: you have 10 entrys in Array

2nd: in your case: $arraysize = ubound ($avArray)

;-))

Stefan

Link to comment
Share on other sites

Sure,

You need to look at Ubound. Search for it in the help file... :)

Technically there are 10 entries in the array though, which is what Ubound returns, so use (for example):

For $i = 0 To UBound ($array) - 1
....

Cheers,

Brett

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...