Help for this page

Select Code to Download


  1. or download this
    %hash =  map { split( /X/, $_ ) } ( "fooXbar","bishXbash") ;
    
    ...
    foreach(keys %hash){
      print "1: $_ = $hash{$_}\n";
    }