Power Query
published
Search
⌃K

Uri.EscapeDataString

Uri.EscapeDataString

Encodes special characters in accordance with RFC 3986.
function (data as text) as text

Description

Encodes special characters in the input data according to the rules of RFC 3986.

Category

Uri

Examples

Encode the special characters in "+money$".
Uri.EscapeDataString("+money$")
"%2Bmoney%24"