Help for this page

Select Code to Download


  1. or download this
    say $_ for map {sprintf (“%d”, length)} split/$motif/, $string;
    
  2. or download this
    say length for split /$motif/, $string;
    
  3. or download this
    my @a = map length, split /$motif/, $string;