Help for this page

Select Code to Download


  1. or download this
    $ perl -E '
    $s1 = q{gctgc};
    ...
    0x04
    0x00
    $
    
  2. or download this
    use strict;
    use warnings;
    ...
        substr $baseStr, $_, 1, q{X} for @posns;
        return $baseStr;
    }
    
  3. or download this
    at
    gctgctaggctgtgctgccaactggatcctgcgcgggacgtcctttgtctacgtcccgtcggcgctgaat
    +cctgcggacgacccctctcgtggtcg
    ttggggctct
    ccgccctcttctccgcctgccgttc
    ggc
    
  4. or download this
    use strict;
    use warnings;
    ...
    
        $diffPosns{ pos $diff } ++ while $diff =~ m{(?=[^\0])}g;
    }