Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vbs script to read a mixed variable file

Status
Not open for further replies.

Katto

Technical User
Apr 6, 2005
42
0
6
US
Hello,

I need to read a list of 3 columns where column A & C are strings and column B consists of numbers
They are comma separated as shown below

A,2,C
V,3,G
U,1,R
etc

I tried:
==========================
while eof(1)=false
line input#1,T$
TT=split(T$,",")
==========================
and
==========================
while eof(1)=false
input#1, S1,N1,S2
=========================

non of these gave me the results I was looking for. Looks like the lines ignore the newline

Any ideas?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top