Help for this page

Select Code to Download


  1. or download this
    
       sub reduce_whitespace { $_[0] =~ s/\s+/ /g }
    ...
    
       > black cat
    
  2. or download this
    use Benchmark qw(cmpthese);
    use strict;
    ...
       ${ $_[0] } =~ s/\s+//;
    }
    
  3. or download this
    
    Length of string: 1000
    ...
    alias    151515/s    --     -34%
    ref      228833/s   51%       --