Dictionary Search

This search field accepts standard MySQL wildcards. What this means to one unfamiliar with the magical realm of SQL syntax is that the dictionary can be queried for matches that are fuzzier than just the exact string entered. You only need to know two special characters, "_" and "%".

Any underscore (_) that you enter will act as a single character wildcard, while any percent sign (%) will act as a wildcard that can match zero or more characters.

F'rexample, "_hit" will match both "chit" and "whit", but not "hit", and "%hit%" will match "hit" along with any other word in the dictionary containing the letters "H I T" in sequence.

Sections Sub-Sections