in reply to Another array thing - split two fields into one
You just need to join them before pushing:
while ( <IN> ) { push @array, join '', (split /\s+/)[9, 0]; } [download]
After Compline,Zaxo