You are here: irt.org | FAQ | ASP | Q5824 [ previous next ]
Use the VBScript split funtion to return an array of the values separated by whatever character you specify.
<% Dim someArray, myText myText ="Jed, 21, 178cm" someArray = split(myText, ",") ' someArray(0) = "Jed" ' someArray(1) = 21 ' someArray(2) = "178cm" %>