URLENCODE
The URLENCODE function converts the input string to the x-www-form-url encoding format.
Input/Output
Number of Connections: 1
| Input | Data Type | Description |
| Input1 | String | The data to convert. |
| Output | Data Type | Description |
| Output1 | String | The converted x-www-form-url encoded form. |
Property
| Name | Property Type | Description |
| Encoding | choice | The character code.
| utf-8 [utf-8]
| - |
Unicode utf-8
|
| shift_jis [shift_jis]
| - |
Shift JIS
|
| euc-jp [euc-jp]
| - |
EUC-JP
|
| iso-2022-jp [iso-2022-jp]
| - |
ISO-2022-JP
|
| utf-16 [utf-16]
| - |
Unicode utf-16
|
|
| SpaceAsPlus | boolean | Specifies whether use "+" as a single-byte space.
| true [true]
| - | converts a single-byte space to "+".
|
| false [false]
| - | converts a single-byte space to "%20"
|
|
Topic
- ASCII characters {0-9,A-Z,a-z,-,_,.,*} are output as they are.
- A space character (" ") is converted according to SpaceAsPlus.
- All other characters are converted according to the encoding type selected and output using the %xx form.
Example
| Property | Output |
| Input 1 | Infoteria Corp. | Encoding | utf-8 | Infoteria+Corp. |