Hi there, I have a list of the URLs and emails and I want to fiter them to remove the duplicates. Can anyone tell me please any good free tool for this purpose. I will be really thankful. Best Regards KB
What is the format? If it's simple enough (i.e. one per line) you could do it very easily php code: $data = file('list.txt'); $data = array_unique($data); echo $data; PHP: