Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print ">$str<\n";
    $str =~ s/\b\s+\b/ /g;
    print ">$str<\n";
    
  2. or download this
    >  Hello
        
    ...
    <
    >  Hello World  
    <