in reply to Re^2: Pattern matching
in thread Pattern matching

Thanks for help and input. below code works fine:
my $file = "t.txt"; open(FH,$file) || die "can't open file \n"; while (<FH>) { chomp; my $line = $_; $line =~ s/\"(.*?)\"/replace($1)/ge; $line =~ s/\,/~/g; $line =~ s/\;/,/g; print "$line \n"; } close FH; sub replace { my ($str) = @_; $str =~ s/\,/\;/g; return $str; }

Replies are listed 'Best First'.
Re^4: Pattern matching
by tmharish (Friar) on Feb 01, 2013 at 10:50 UTC
    perlCrazy like choroba has mentioned its easy to miss certain cases - Best to use a module that's been put through its paces on all kinds of different data.