Help for this page

Select Code to Download


  1. or download this
    for (@temp) {
      push @a, $_ if s/^a_//;
      push @b, $_ if s/^b_//;
    }
    
  2. or download this
    my %hoa;
    s/^([a-z])_// and push @{$hoa{$1}}, $_ for @temp;