Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Switch services using the Version drop-down list. Learn more about navigation.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Decodes input string from punycode form. The string shouldn't contain the initial xn--, and must contain only ASCII characters.
Syntax
punycode_to_string('input_string')
Learn more about syntax conventions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| input_string | string |
✔️ | A string to be decoded from punycode form. The function accepts one string argument. |
Returns
- Returns a
stringthat represents the original, decoded string. - Returns an empty result if decoding failed.
Example
print decoded = punycode_to_string('acadmie-franaise-npb1a')
| decoded |
|---|
| académie-française |
Related content
- Use punycode_from_string() to encode a string to punycode form.