On Sat, 6 Dec 2003 17:59:25 -0000, "Ponder"
<ponder_public@yahoo.<NOSPAM>co.uk> wrote:
>Okay here's the scenario:
>
>I have two big lists of numbers. One number on each line (they're telephone
>numbers if that helps.) What I want to do, is have VB search through
>list2.txt for numbers that are also in list1.txt and delete them. I would
>usually sit and figure this out myself but I have the flu and I know how
>helpfull you guys are :P~
>
>Thanks in advance to anyone that can help.
1) Pull the numbers into an Array
2) Sort them
3) Work through both lists comparing for <, =, >
You may be better off sorting the lists on disk if they are huge, and
then Line Input ing the numbers
For text file sorting see:
www.jerryfrench.co.uk/dsortv.htm