Help for this page

Select Code to Download


  1. or download this
    print "@array";
    
  2. or download this
    local $" = '';
    print "@array";
    
  3. or download this
    @array = grep !/^\s+$/, @array;
    
  4. or download this
    @code = map { s/^\s+//; s/\s+$//; $_ } @array;