Help for this page

Select Code to Download


  1. or download this
    
      'abcdef' =~ / ( abc ( def) ) /x;
       $1 -> 'abcdef'
       $2 -> 'def'
    
  2. or download this
        use Data::Dumper;
        my $table_ref="!Frequency[A][B][C]  ..some other text..";
    ...
    
        print Dumper($filename,\@vars);