Help for this page

Select Code to Download


  1. or download this
       $code =~ s/\n//g;      #remove all the newlines
       $code .= "\n";         #add one to the end
    
  2. or download this
       $code =~ s/\n(?=.)//g  # remove all but the last newline