0

Here are two examples for search in the portal, where I would expect to get some results in the second search, even with one letter missing.

The search is in Hebrew language

The full term return some results, First search return some results

The same term with one letter missing return no results, Second seearch with one letter less return no results

Guy Assaf
  • 888
  • 9
  • 24

2 Answers2

2

There are a few ways you can search for partial terms in Azure Search. You'll need to decide which of the following methods will work best in your scenario. Based on the example it seems either fuzzy search or prefix search will do the job. You can learn about the differences between the these methods in the documentation.

Let me know if you have any questions about any of the above

Yahnoosh
  • 1,932
  • 1
  • 11
  • 13
0

Check this answer I solve this using a regex and change the GET by a POST request.

enter image description here

Quethzel Diaz
  • 621
  • 1
  • 11
  • 26