use strict; use warnings; while () { chomp; print "$_: "; s/"(.*)"/$1/g; s/""/"/g; print ">$_<\n"; } __DATA__ "" """" "a""""" "a""b""c""d""f" #### "": >< """": >"< "a""""": >a""< "a""b""c""d""f": >a"b"c"d"f<