I'm new at this...
I'm reading a delimited text file, but I can't seem to figure out how to pull data between the delimiters out as variables in VBScript.
Ex.
The text file has 3 columns as such:
text1:text2:text3
text4:text5:text6
I need to read each line and pull each of the 3 "textx" fields out on each line and assign it a variable.
Ex.
var1 = text1
var2 = text2
var3 = text3
I'll loop back to read the next line and reassign the varibles.
Any pointers on how to do this?
Thanks!
I'm reading a delimited text file, but I can't seem to figure out how to pull data between the delimiters out as variables in VBScript.
Ex.
The text file has 3 columns as such:
text1:text2:text3
text4:text5:text6
I need to read each line and pull each of the 3 "textx" fields out on each line and assign it a variable.
Ex.
var1 = text1
var2 = text2
var3 = text3
I'll loop back to read the next line and reassign the varibles.
Any pointers on how to do this?
Thanks!