Archive

Posts Tagged ‘delimited’

VBScript Subroutine to Split Up a Tab-Delimited Line of Text

June 15th, 2005

This VBScript function returns an array when given a line of
tab-delimited text.

To use it, write a line of code like the
following:

Dim theArray()
theText =
“something tab delimited”
theArray =
tabsplit(theText)

As with all my script code,
this is provided as-is without warranty or support.  Use at your
own risk.

Read more…

admin VB and VBScript , , , , , , , , , , ,