Help for this page

Select Code to Download


  1. or download this
    #badway
    /(foo)(bar)(baZ)/;
    ...
    {
      return ${$bar};
    }
    
  2. or download this
    #better way
    use strict;
    ...
    {
      return $matches[$bar];
    }