Re: [Perl-unix-users] Perl Help Please

2002-03-28 Thread $Bill Luebkert
Johnno wrote: > I have a data field listed below. > > "data1","data2","data3","data4","data5","data6","data7 ","data8" > > open (data,"data.txt") || die; > while () { > > this is where I run into problems... > > I am wanting do the following.. > > split up the data after every , and then rem

[Perl-unix-users] Perl Help Please

2002-03-28 Thread Johnno
I have a data field listed below. "data1","data2","data3","data4","data5","data6","data7 ","data8" open (data,"data.txt") || die; while () { this is where I run into problems... I am wanting do the following.. split up the data after every , and then remove the " and store it as $data[1] = da