Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w  # Bugs In My Code?
    use strict;
    ...
                11l                                       032
               d                                           jh
    
  2. or download this
        # remove two consecutive white space characters
        $d =~ s/\s{2,2}//gx;
    
  3. or download this
        # remove ALL occurances of two consecutive white space characters
    
  4. or download this
     while () {
            # pick a random character to remove from the  code fragment
            $b=$b[int rand @b];
            last if $d =~ /\Q$b\E/
        }