Re: Storing and Searching large text lists

2015-12-31 Thread via Digitalmars-d-learn
On 2016-01-01 13:22, Nicholas Wilson via Digitalmars-d-learn wrote: > On Friday, 1 January 2016 at 00:41:56 UTC, brian wrote: > >> I have a large list, B, of string items. For each item in that large list, I >> need to see if it is in the smaller list, A. I have been using a simple >> strin

Re: Storing and Searching large text lists

2015-12-31 Thread Nicholas Wilson via Digitalmars-d-learn
On Friday, 1 January 2016 at 00:41:56 UTC, brian wrote: I have a large list, B, of string items. For each item in that large list, I need to see if it is in the smaller list, A. I have been using a simple string array for the storage of A string[] A and then using foreach to go through all th