Link to home
Start Free TrialLog in
Avatar of jkorz
jkorz

asked on

Finding array length

Hello Experts,

I am writing a csv import script and I need to determine the length of an array that I created with the split function. Is there any easy way to do this?

-jkorz
ASKER CERTIFIED SOLUTION
Avatar of Steve Bink
Steve Bink
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
UBound(ArrayName) - LBound(ArrayName) + 1
Avatar of jkorz
jkorz

ASKER

I knew it was easy, as you can tell it's been a while since I have used good old asp

thanks a bunch