in reply to Re: Re-reading history from 2001in thread Re-reading history from 2001 / using a capture during split
my @foo = split /(?|(A)|(B))/, "1A2B3"; use Data::Dumper; print Dumper \@foo; [download]
$VAR1 = [ '1', 'A', '2', 'B', '3' ]; [download]