Help for this page

Select Code to Download


  1. or download this
    my $str = "Hello\n\t\n   World\n"; 
    print $str; 
    $str =~ s/\s+/ /g; 
    print $str;
    
  2. or download this
    Hello
    
       World
    Hello World