Apr 5, 2002 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 Does anyone know if there is a VBscript equivalent to the split implict array creation in JScript? Thanks.
Does anyone know if there is a VBscript equivalent to the split implict array creation in JScript? Thanks.
Apr 5, 2002 #2 JuanitaC Programmer Joined Feb 21, 2001 Messages 292 Location CA Use the Split function (value to split, delimiter to split on) myArray = Split(varToSplit,"," Upvote 0 Downvote
Use the Split function (value to split, delimiter to split on) myArray = Split(varToSplit,","
Apr 5, 2002 #3 dbrom Programmer Joined Feb 21, 2001 Messages 100 Location US myArray = StringVar.split("," HOpe this helps <Dmitriy> dbrom@crosswinds.net Upvote 0 Downvote