Help for this page
$string = "atccatccctttaat"; @triplets0 = $line=~ /(...)/;
use strict; use warnings; ... my @triplets = $string =~ /(...)/; print Dumper (\@triplets);
$VAR1 = [ 'atc' ];