Help for this page
use strict; my %h = (a1 => 1); ... print "x$h{a1}x\n"; #print 1 print "x$1x\n"; #print "a1"
test work xx x1x xa1 x