URL & Email Filtering Tool?

Discussion in 'General Marketing' started by kashifkb, May 30, 2007.

  1. #1
    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
     
    kashifkb, May 30, 2007 IP
  2. Triexa

    Triexa Active Member

    Messages:
    580
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #2
    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:
     
    Triexa, May 30, 2007 IP