URLEncode

Kalipso - Form - Expressions - Functions - Functions Descriptions - String Functions - URLEncode

This Function encodes a specified string into a URL encoded string.

Parameters

  • Value <string> - The string to encode.

The result can be slightly different in different platforms, but it will always represent a valid URL Encoded String. For example in Windows a space will normally be encoded into %20 and in Android into +. Both %20 and + are valid encodings for the space character.

Examples

  • Example 1

URLEncode("SYSDEV&Kalipso Designer") Result = SYSDEV%26Kalipso%20Designer

Last updated