padawan_linuxero has asked for the wisdom of the Perl Monks concerning the following question:
but did not work#use strict; my $file = "g:/dbf2csv/reg501.csv"; # Slurp File Contents open(FILE, $file) or die "Can't open $file: $!"; #my $data = do {local $/; <FILE>}; my $newdeli = do {~s/\"//g; <FILE>}; close(FILE);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Delete de " from my file
by FunkyMonk (Chancellor) on Oct 12, 2007 at 18:47 UTC | |
Re: Delete de " from my file
by shmem (Chancellor) on Oct 12, 2007 at 18:56 UTC | |
Re: Delete de " from my file
by Aim9b (Monk) on Oct 12, 2007 at 19:16 UTC |