Home Search

DriveWorks Pro 21
UrlEncode

Send Feedback

UrlEncode

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).

Syntax

UrlEncode([Input Value])

Where:

Input Value is the value to encode

Examples

RuleMeaning
UrlEncode(DWVariableURL)Will encode the given input value.

This function relates to the Send HTTP Request task.