http://qs1969.pair.com?node_id=61440


in reply to $'name

See line 5811 of toke.c (for Perl5.6.0):

else if (*s == '\'' && isIDFIRST_lazy_if(s+1,UTF)) {
So, in effect, /\$'[a-zA-Z_]/ is treated differently than /\$'[^a-zA-Z_]/ [note the caret (^)].

        - tye (but my friends call me "Tye")