Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
                   map trim_end,
                   "$1", "$2";
    }
    
  2. or download this
    print(trim_start(trim_end($var)), "\n");
    
  3. or download this
    my @trimed = map trim_start, map trim_end, @untrimmed;