benson Posted January 9, 2008 Posted January 9, 2008 How do i count the number of elements in an array? example, $array = stringsplit("mon|tue|wed|thurs|fri", "|") the number of elements is 5, how do i make $array output 5? thanks.
randallc Posted January 9, 2008 Posted January 9, 2008 How do i count the number of elements in an array? example, $array = stringsplit("mon|tue|wed|thurs|fri", "|") the number of elements is 5, how do i make $array output 5? thanks.Hi, $array[0] or, better, ubound($array) Look in the HelpFile! Best, Randall ExcelCOM... AccessCom.. Word2... FileListToArrayNew...SearchMiner... Regexps...SQL...Explorer...Array2D.. _GUIListView...array problem...APITailRW
rasim Posted January 9, 2008 Posted January 9, 2008 How do i count the number of elements in an array?example, $array = stringsplit("mon|tue|wed|thurs|fri", "|")the number of elements is 5, how do i make $array output 5? thanks.See Ubound() function in the help file.
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