Help for this page

Select Code to Download


  1. or download this
    my %data =
        map split(/=/, $_, 2),
    ...
    
    print "$_ is $data{$_}\n"
        for keys %data;
    
  2. or download this
    my %data = /([^=\s]+)=(\S*)/g;
    
    ...
        for
            grep /^[abc]\z/,
            keys %data;