Help for this page
use strict; use warnings; ... my @substrings = $string =~ /(>.+)/g; print Dumper \@substrings;
$VAR1 = [ '> abcd1234', '>xyz123 ' ];
$VAR2 = [ '> abcd1234', 'abcd abcd' ];