Contents
Display Legacy Contents

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

     
Example 1
URLEncode("SYSDEV&Kalipso Designer")

Result = SYSDEV%26Kalipso%20Designer          

See also
Samples
Sample 1
Sample 2
 
Updated: 4/11/2016 12:11 PM