Brian Volk wrote:

 
> Is there a way to covert a .csv file to .tab file? 

I would do something like this.

while (<>) {
        @fields = split(/,/,  $_);
        $line = join("\t", @fields);
        print $line;
}

You could do all that on one line, but I prefer readability.

-- 
Bud Rogers  <[EMAIL PROTECTED]>   http://www.sirinet.net/~budr
All things in moderation.  And not too much moderation either.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to