in reply to split, manipulate, join
To grab several columns from split, you can use the slice syntax:
my @columns = (split /[?=]/)[3 .. 6, 9]; [download]