http://www.perlmonks.org?node_id=857080


in reply to What does it mean "$_." in PERL

$_ is a special variable which contains the value of the last matched expression or the intermediate value in loops such as for, while, etc.,if you don't store that matched expression into explicit variables.