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.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
The function converts characters of the input URL into a format that can be transmitted over the internet. Differs from url_encode_component by encoding spaces as '+' and not as '%20' .
url_encode(
url)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
url | string |
✔️ | The URL to encode. |
URL (string) converted into a format that can be transmitted over the Internet.
let url = @'https://www.bing.com/hello world';
print original = url, encoded = url_encode(url)
Output
original | encoded |
---|---|
https://www.bing.com/hello world/ | https%3a%2f%2fwww.bing.com%2fhello+world |