Re: How to read a delimeted(delimeter ||) text file Posted: 28 Nov 2002
Use "Split()" method of VBScript. To learn more about Split(), see the documentation that comes with VBScript or download it from www.microsoft.com/vbscript.
You'll have to open the file using FSO, then using Split() and the delimiter, you'll get an array of sub-strings. Then do what you what you want to do with it.