[Solved] Using a .csv file as a data pool for the sed function
Use Perl. Read the CSV file into a hash, build a regular expression from the hash keys, and do a global subtitution on the text using the hash to translate. It looks like this use strict; use warnings; use 5.010; use autodie; my $str = <<‘__END_TEXT__’; The ripple-necked bird sang melodies by the curling river … Read more