Re: [SQL] Deleting rows in a file based on condition
Oops. I posted this to the wrong support list. Sorry. -Ken On Fri, 2006-02-10 at 09:52 -0800, Ken Hill wrote: I have the following perl script that reads a fixed-width file and replaces values in various sections of the file. --- open
[SQL] Deleting rows in a file based on condition
I have the following perl script that reads a fixed-width file and replaces values in various sections of the file. --- open (IN, '< in.txt'); open (OUT, '> out_test.txt'); while () { chomp; $first_section = substr $_, 0, 381;