URLDECODE
The URLDECODE function decodes the x-www-form-url formatted input to a regular String.
Input/Output
Number of Connections: 1
| Input | Data Type | Description |
| Input1 | String | The data to convert. |
| Output | Data Type | Description |
| Output1 | String | The converted data. |
Property
| Name | Property Type | Description |
| Encoding | choice | The character code.
| Auto Detect [(AutoDetect)]
| - |
Attempts to automatically determine the encoding type. The encoding type selected may not be that the user may have expected.
|
| 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 converting "+" as a single-byte space.
| true [true]
| - | converts "+" to a single-byte space.
|
| false [false]
| - | Don't convert "+"
|
|
Topic
-
SpaceAsPlus is set to true, a plus character ("+") is output as a space character (" ").
- The "%xx" form is converted to a byte from its 16 bit hexadecimal form.
- All other characters are converted directly to byte form.
- The above mentioned conversion is done using the specified
Encoding and then output.
Example
| Property | Output |
| Input 1 | Infoteria+Corp. | Encoding | utf-8 | Infoteria Corp. |