Help for this page

Select Code to Download


  1. or download this
    my %flag;
    print "\nReduce white space? >> ";
    ...
    }
    s/\s\s+/ /g if $flag{space};
    }
    
  2. or download this
    for (my $i=0; $i<(length -4); $i++) {
      push @{$strings{substr ($_,$i,4)}},substr($_,$i+4,1);
      # or # $strings{substr (_,$i,4)}{substr($_,$i+4,1)}++;
    }