Help for this page

Select Code to Download


  1. or download this
    say $fh length for split $motif, $string;
    
  2. or download this
    open(my $fh, '>', $qfn)
       or die("Can't create \"$qfn\": $!\n");
    
    say $fh length for split $motif, $string;
    
  3. or download this
    my @lengths = map length, split $motif, $string;