Help for this page

Select Code to Download


  1. or download this
      "A C D"
    
  2. or download this
      /A(.*?)C(.*?)D/
    
  3. or download this
      "ABICID"
    
  4. or download this
      "A--C-D"
    
  5. or download this
      if ($string =~ $test) {
        for my $offset (1 .. $#-) {
    ...
        # now extract only the matched extent
        push @hyph_padded_seq, substr($test, $-[0], $+[0] - $-[0]);
      }