in reply to Specifics Items in a Text File
while(<DATA>){ my ($item) = $1 if /user(?:\d+)\*(.*?)$/; next if $seen{$item}; print $item,"\n"; $seen{$item}++; } [download]
artist