URLDecode | |||||||
Type | function | ||||||
Dictionary | LCS | ||||||
Library | LiveCode Script | ||||||
Syntax |
| ||||||
Summary | Returns the decoded form of a URL that was encoded for posting to an HTTP server. | ||||||
Introduced | 1.0 | ||||||
OS | mac, windows, linux, ios, android | ||||||
Platforms | desktop, server, mobile | ||||||
Parameters |
| ||||||
Example |
| ||||||
Values |
| ||||||
Related | Keyword: URL, characters, character, http Property: httpHeaders Command: post Function: decompress, macToISO, arrayDecode, charToNum, baseConvert, textDecode Control Structure: function Glossary: decode, return, sign, encode, character set, hexadecimal, server, function | ||||||
Description | Use the URLDecode function to decode a URL that has been sent by another system. When the URLDecode function encounters a percent sign (%), it treats the next two characters as hexadecimal digits. (If one of the characters is not a hexadecimal digit, it's treated as a zero.) The number is converted to its character equivalent, using the character set currently in use.
produces the word "??????????????". | ||||||
Tags | networking |