Help for this page

Select Code to Download


  1. or download this
    %hash = map { my $s=$_; $s=~s/\s+//g; $s } %hash;
    
  2. or download this
    use List::MoreUtils qw( apply );
    %hash = apply { s/\s+//g } %hash;