punycode_from_string

This article describes the punycode_from_string() command.

Encodes input string to Punycode form. The result string contains only ASCII characters. The result string doesn’t start with “xn–”.

Syntax

punycode_from_string('input_string')

Parameters

NameTypeRequiredDescription
input_stringstring✔️A string to be encoded to punycode form. The function accepts one string argument.

Returns

  • Returns a string that represents punycode-encoded original string.
  • Returns an empty result if encoding failed.

Examples

 print encoded = punycode_from_string('académie-française')
encoded
acadmie-franaise-npb1a
 print domain='艺术.com'
| extend domain_vec = split(domain, '.')
| extend encoded_host = punycode_from_string(tostring(domain_vec[0]))
| extend encoded_domain = strcat('xn--', encoded_host, '.', domain_vec[1])
domaindomain_vecencoded_hostencoded_domain
艺术.com[“艺术”,“com”]cqv902dxn–cqv902d.com