Help for this page
my @matches = ($text =~ /(stufftoextract)\w(morestufftoextract)/);
my $match = $text =~ /(stufftoextract)/;
my $match = ($text =~ /(stufftoextract)/)[0];