Forum Discussion
AlexKaras
12 years agoCommunity Hero
Hi Aamer,
One of the possible approaches: split() function will return an array that can be used later.
In VBScript it will be:
Dim arr
arr = split(strDataString, vbTab)
In JScript it will be something like this:
var arr = split(strDataString, '\t');
One of the possible approaches: split() function will return an array that can be used later.
In VBScript it will be:
Dim arr
arr = split(strDataString, vbTab)
In JScript it will be something like this:
var arr = split(strDataString, '\t');