Please be patient to this simple regex memory question:
during parsing & remembering the var. (using $1, $2), I cannot get the right syntax for this - <Id>3456</Id> <Name>Scott Susan</Name> .....
Using this - m#(<Id>)(.*)(</Id>)#; print "1 - $1"; ... won't work!
Anyone can shed some light on this? Thanks.