http://www.perlmonks.org?node_id=1016508


in reply to Re: Pattern matching
in thread Pattern matching

Yes, and pray for \" not appearing in the data.
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^3: Pattern matching
by perlCrazy (Monk) on Feb 01, 2013 at 10:35 UTC
    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; }
      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.