Help for this page

Select Code to Download


  1. or download this
    $count = ($string =~ tr/\n/\n/);
    
  2. or download this
    # Greedy
    $string = q(xxxx); 
    ...
    $string = q(xxxx); 
    $count = ($string =~ s/x*?/#/g); 
    print qq($string $count), $/;