l$() = ItemSplit$(s${,d$}) |
|
This function takes a delimited string list (s$) and populates a string array with each item from the delimited string. As with all the delimited string functions the delimiter character (d$) is optional and will default to a comma if not specified. The first item in a delimited string is item zero. This is to match item number to array indexes. For example:
dim l$(0)
|