Split
Parse a string of delimited values into an array.
Syntax
Split(expression [,Delimiter [,count [,compare]]] )
Key
expression The string expression to be broken up into an array.
Delimiter The character used to separate items (default=a space " ")
count The number of strings
compare vbBinaryCompare (0) or vbTextCompare(1)
Example
vaPrices = Split("23.50, 67.50, 45.99, 18.47", ",")
WScript.Echo vaPrices(0)
> 23.50