How to go directly from string to an array using Perl Regex extraction:
my ($first, $second, $third) = ( $string =~ /not(.*?)this(.*?)stuff(.*?)/ );
How to go directly from string to an array using Perl Regex extraction:
my ($first, $second, $third) = ( $string =~ /not(.*?)this(.*?)stuff(.*?)/ );