Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    # View the data (use a *reference* to the hash, though!)
    printf "Data => %s\n", Dumper(\%hash);
    
  2. or download this
    Data => $VAR1 = {
              'A' => ' B, C',
              'D' => 'E,F',
              'G' => ' H,I'
            };