WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Arrays
plus
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

Convert an Array to a Delimited List


origlist = "apples,oranges,pears,grapes"

;Convert a delimited list to an array.
array = Arrayize(origlist,",")

;Convert an array back to a delimited list
list = ""
for xx = 1 To ArrInfo(array, 1)
list = ItemInsert(array[xx-1], -1, list, ",")
next

Message("List converted from an Array:",list)

Article ID:   W15890
File Created: 2004:03:30:15:41:30
Last Updated: 2004:03:30:15:41:30