my @matches = ($text =~ /(stufftoextract)\w(morestufftoextract)/); #### my $match = $text =~ /(stufftoextract)/; #### my $match = ($text =~ /(stufftoextract)/)[0];
## my $match = $text =~ /(stufftoextract)/; ##
## my $match = ($text =~ /(stufftoextract)/)[0];