Uri.EscapeDataString

Syntax

Uri.EscapeDataString(data as text) as text

About

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

Example 1

Encode the special characters in "+money$".

Usage

Uri.EscapeDataString("+money$")

Output

"%2Bmoney%24"