Help for this page

Select Code to Download


  1. or download this
    %hash = { 
                 filename1 => { id1 => 1, id2 => 1 },
                 filename2 => { id1 => 3, id2 => 4 }
    };
    
  2. or download this
    use strict;
    use warnings;
    ...
           $filehash{$filename}{$ref_id} = $ref_name; 
        }
    }