Search Guide
- Diacritics Enforced toggles between using a diacritic-neutral and a diacritic-enforced search.
Diacritic-neutral: wiezniow = więźniów - The default search uses the Chomper method anywhere in corpus
- Chomper search removes letters from the right until a match is found
- Exact Matches Only matches the entire search string
- MySQL RegExp allows MySQL regexp/rlike expressions
- Context matching can be done by using parentheses: (flower)
- Wildcard Operator: *
- Right-anchored searches: *grate
- Left-anchored searches: int*
- Left- & Right-anchored: int*te
- Internal searches: *grat*
- Combination searches: *int*gr*
- Boolean Operators
- AND Operator: ^ (e.g. horse ^ fly )
- OR Operator: | (e.g. horse | fly )
- NOT Operator: ~[...] (e.g. horse | fly ~[horse & fly], horse*~[ horsefly ] )
- Multiple boolean and wildcard operators: anti* | contra* | counter*
< Search Tips >