in reply to Finding words within a character set

I would use the dictionary as a database pattern match. If a user types a word starting with A,then B, then L, then E. Immediately in the program I would select words starting with A into a variable array then proceed matching the rest of the criteria within the array, once the user finish typing the rest of the word. I guess your dictionary would be well suit it that you will not have trouble matching words against it.
  • Comment on Re: Finding words within a character set