I have a scrabble dictionary containing 200k words in capital letters.
I want to do a wild card search. For example: pattern = "G.NT".
Regex regex = new Regex(".*" + pattern + ".*");
I get 3 matches using:
List
I get 2 matches using:
List
There should be 300+ from AGENT to GENTRY to UNGENTLY
Any advice please. Thanks
Loading
Replies
Know the answer? Post it — somebody with the same question will find it here.