0

是否可以将由 . 分隔的文本块的部分分配给数组< >。例如,

sometexthere <email@email.com> more text
more text moretext <another@email.com>

应该产生

@array = qw(email@email.com another@email.com);

我怎样才能做到这一点?

4

1 回答 1

4
my @array = $text =~ /<([^<>]+)>/g;
于 2013-01-25T22:42:00.517 回答