On Fri, 21 Aug 2009 10:18:15 -0700, Scott Ford <scott_j_f...@yahoo.com> wrote:

>I agree with John this have done with SAS csv files ..with no problem at
all in Rexx >( the wonder horse ), pretty easy .
 
>Scott J Ford

Silly me. I forgot to say it is also simple in awk and Perl as well.

Perl

while(<>) {
   @data=split/,/;
   # process data in $data[0] and so on
}

--
John

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to