Help for this page

Select Code to Download


  1. or download this
    my $chomped = chomp (@array)
    
  2. or download this
    sub chomp_and_return {
        chomp @_; return @_;
    ...
    sub lc_array {
        map { lc } @_;
    }