It would be useful if wildcard (?, *) searches were supported in Desktop and Webscreens.

E.g. ?
The search string te?t would match both test and text.

E.g. *
The wildcard search: tes* would match test, testing, and tester, te*t would match test and text. *est would match pest and test.

Looks like this feature is available in SOLR (https://lucene.apache.org/solr/guide/6_6/the-standard-query-parser.html#TheStandardQueryParser-TermModifiers).

Comments