Help for this page

Select Code to Download


  1. or download this
    sub fuzzy {
        my $string = shift;
    ...
    }
    
    print fuzzy('GCGAT');
    
  2. or download this
    $re = fuzzy($string);
    if($value =~ /^($re)/) { ... }