Help for this page

Select Code to Download


  1. or download this
    my $str='1,zxc,2,asd,3,qwe';
    my %hash=split /\,/, $str;
    
  2. or download this
    foreach my $key (sort keys %hash) {
      #do something...
    };