Help for this page

Select Code to Download


  1. or download this
    $hashref = {  '$/ 11' => 'a'};
    $fieldnum= '$/ 11';
    $value = $hashref->{$fieldnum};
    print "$value";
    
  2. or download this
    $hashref = { a => '$/ 11' };
    $fieldnum= 'a';
    $value = $hashref->{$fieldnum};
    print "$value";