Is it possible to assign to an array the parts of a block of text that is delimited by < >. For example,
sometexthere <[email protected]> more text
more text moretext <[email protected]>
should produce
@array = qw([email protected] [email protected]);
How can I accomplish this?