Help for this page

Select Code to Download


  1. or download this
    my @arr = map uc, split(/:/, $info);
    
  2. or download this
    for(my $i=0; $i<$iLength; $i++) {
      $arr[$i] = uc($arr[$i]);
    }
    
  3. or download this
    for (@arr) {
      $_ = uc;
    }
    
  4. or download this
    $_ = uc for @arr