Skip to main content

Uri.EscapeDataString

Encodes special characters in accordance with RFC 3986.

Syntax

Uri.EscapeDataString(
data as text
) as text

Remarks

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

Examples

Example #1

Encode the special characters in "+money$".

Uri.EscapeDataString("+money$")

Result:

"%2Bmoney%24"

Category

Uri