Help for this page

Select Code to Download


  1. or download this
    my $info = "one:two:three:four";
    my @arr = split(/:/, $info);
    ...
      $arr[$i] = uc($arr[$i]);
    }
    # @arr = ONE, TWO, THREE, FOUR
    
  2. or download this
    my $info = "one:two:three:four";
    my @arr = uc split(/:/, $info);