johngg@shiraz:~/perl/Monks > perl -Mstrict -Mwarnings -E ' open my $inFH, q{<}, \ <; }; close $inFH or die $!; say qq{-->$1<--} while $data =~ m{"([^"]*)"}g;' -->hello<-- -->bar<-- -->hello2<-- -->world<-- -->bar2<-- -->baz<-- --><-- -->example 1 for instance<-- johngg@shiraz:~/perl/Monks >