Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
The function converts an encoded URL into a regular URL representation.
For more information about URL encoding and decoding, see Percent-encoding.
url_decode(
encoded_url)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
encoded_url | string |
✔️ | The encoded URL to decode. |
URL (string) in a regular representation.
let url = @'https%3a%2f%2fwww.bing.com%2f';
print original = url, decoded = url_decode(url)
Output
original | decoded |
---|---|
https%3a%2f%2fwww.bing.com%2f | https://www.bing.com/ |