Help for this page

Select Code to Download


  1. or download this
    open ...;
    open ...;
    ...
       s/\s(?=\s)//g;
       print OUT;
    }
    
  2. or download this
    perl -pe"BEGIN{$/=''} s/^\s+//; s/\s(?=\s)//g" test.txt > test.out