File tree Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ ms.service: azure-ai-search
9
9
ms.custom :
10
10
- ignite-2023
11
11
ms.topic : how-to
12
- ms.date : 09/28 /2025
12
+ ms.date : 10/01 /2025
13
13
ms.update-cycle : 365-days
14
14
---
15
15
@@ -90,6 +90,40 @@ Azure AI Search provides built-in normalizers for common use-cases along with th
90
90
91
91
<sup>(1)</sup> Custom normalizers don't specify tokenizers since normalizers always produce a single token.
92
92
93
+ ## Test a normalizer
94
+
95
+ You can use the [Test Analyzer (REST)](/rest/api/searchservice/indexes/analyze) to see how a normalizer processes an input.
96
+
97
+ **Request**
98
+
99
+ ```http
100
+ POST https://[search service name].search.windows.net/indexes/[index name]/analyze?api-version=[api-version]
101
+ Content-Type: application/json
102
+ api-key: [admin key]
103
+
104
+ {
105
+ "normalizer" :" asciifolding" ,
106
+ "text" : " Vis-à-vis means Opposite"
107
+ }
108
+ ```
109
+
110
+ ** Response**
111
+
112
+ ``` http
113
+ HTTP/1.1 200 OK
114
+
115
+ {
116
+ "tokens": [
117
+ {
118
+ "token": "Vis-a-vis means Opposite",
119
+ "startOffset": 0,
120
+ "endOffset": 24,
121
+ "position": 0
122
+ }
123
+ ]
124
+ }
125
+ ```
126
+
93
127
## Normalizers reference
94
128
95
129
### Predefined normalizers
You can’t perform that action at this time.
0 commit comments