Custom Analyzer
Create a Custom Analyzer When you define the index, you provide a custom analyzer. The Azure site does not allow you to define a custom index, instead, you must use JSON code. During the design phase, make use of the index's analyzers section. One tokenizer, one or more character filters, and one or more token filters may be included. Use a unique name for your analyzer and set the @odata.type property to Microsoft.Azure.Search.CustomAnalyzer. Test Custom Analyzer You can utilize the REST API's Analyze Text function after defining your custom analyzer as part of your index. To submit test text and make sure the analyzer returns tokens appropriately, use the text function. Create these queries using any REST testing tool, like the well-known Postman program. Be sure to test with lots of different text values until you're sure that the custom analyzer behaves as you expect. Use a Custom Analyzer For a Field You can set up your index to utilize a custom analyzer once you...