If wordlist.txt contained:
- ...
foo
bar
blah
blarg
...
Thanks.


open the filereadme.txt wrote:I have a word list about 2Mb large. I am writing a program which requires me to search the word list to see if it contains a certain word. If the word is found in the word list the function will return true, otherwise false. For example:
If wordlist.txt contained:..and I did a search on "foo" my program would return true, however if i did a search on "foo2" it would return false.
- ...
foo
bar
blah
blarg
...
Thanks.