URL encodes a given string.
Can be used to make data safe for transfer in a URL query string preventing REST services from misinterpreting the request.
The function turns unsafe characters (e.g. spaces or the & symbol) into their respective hex representation (e.g. spaces become %20 and & becomes %26).
UrlEncode([Input Value])
Where:
Input Value is the value to encode
Rule | Meaning |
---|---|
UrlEncode(DWVariableURL) | Will encode the given input value. |