in reply to removing non-duplicates
TIMTOWDI
use List::MoreUtils qw(uniq); use strict; my @array=<DATA>; my @array=uniq(@array); print "\n@array"; __DATA__ at12 at12 at12 at13 bn23 bn23 [download]