lucaong / minisearch

Tiny and powerful JavaScript full-text search engine for browser and Node
https://lucaong.github.io/minisearch/
MIT License
4.9k stars 137 forks source link

Search in the middle of string ? #83

Closed ButuzGOL closed 3 years ago

ButuzGOL commented 3 years ago

Is it possible to search in the middle name: 'AH Medical Supplies' query: 'edi' "Medical" found ?

lucaong commented 3 years ago

Hi @ButuzGOL , no, this feature is not provided by MiniSearch, which focuses on prefix search and fuzzy search. Fuzzy search might find results if the search query is close enough to the actual term, but beyond this it is out of scope for MiniSearch.

If you need this kind of feature, you can try Lunr, which allows for queries like “edi” to mean any term that contains “edi”.