lexpy
lexpy copied to clipboard
Python package for lexicon; Trie and DAWG implementation.
Hi, I wonder if there is a small issue in the file automata.py, function __words_with_wildcard, between lines 128 and 147, when the case letter=='*' is processed. If the dictionary is...
Why is the restriction on special chars in a wildcard pattern needed? https://github.com/aosingh/lexpy/blob/b69e0297fc94fe51ea897d311f50230497eb6b93/lexpy/_utils.py#L14
In Lexpy, `?` means "**zero** or one character" and `*` means "zero or more characters". Based on this, why is the pattern `?*` considered illegal while `*?` is allowed? Don't...