-
Notifications
You must be signed in to change notification settings - Fork 6
RemoveDiacritics
David Rivard edited this page Jan 6, 2021
·
1 revision
This API is used to remove diacritics (accents) on a given string. (Ex. Héllö => Hello) Can be very useful for string comparison or sorting.
Input Parameters
Parameter | Type | Description | Required |
---|---|---|---|
InputString | String | String to process | X |
Output Properties
Property | Type | Description |
---|---|---|
OutputString | String | Processed string |
Request
https://{{baseurl}}/api/data/v9.1/driv_RemoveDiacritics
{
"InputString": "Héllô"
}
Response
{
"@odata.context": "https://{{baseurl}}/api/data/v9.1/$metadata#Microsoft.Dynamics.CRM.driv_RemoveDiacritics",
"OutputString": "Hello"
}