#! perl use strict; use warnings; my $s = '"perl"monks'; $s =~ m{ " (\w{4}) " }x; print $1, "\n" if $1; #### 23:31 >perl 475_SoPW.pl perl 23:31 >