Help for this page

Select Code to Download


  1. or download this
    print $count = $_ =~ s/\S+//g;
    
  2. or download this
    print $count = s/\S+//g;
    
  3. or download this
    $count = () = s/\S+//g;