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.
|
Example 1
|
URLEncode("SYSDEV&Kalipso Designer")
Result = SYSDEV%26Kalipso%20Designer |
Updated: 3/21/2018 4:27 PM
|