url_decode
Decode encoded URL strings using CURL.
Syntax
decoded = url_decode(encodedStrings)
Arguments
- encodedStrings
- Any single string or regular array of strings.
- decoded
- Array of strings. Its sizes match
encodedStrings
ones.
Description
url_decode(…)
reverses the url_encode(…)
action.
encodedStrings
.Examples
txt = "+-._~ %23 ABC"; c = url_encode(txt) d = url_decode(c) d == txt
--> txt = "+-._~ %23 ABC"; --> c = url_encode(txt) c = "%2B-._~%20%2523%20ABC" --> d = url_decode(c) d = "+-._~ %23 ABC" --> d == txt ans = T
See also
- url_encode — Encode URL strings using CURL.
- http_get — HTTP GET request.
- url_split — разбивает ссылку URL (HTTP, HTTPS, FTP...)
- hex2dec — преобразование из шестнадцатеричной системы счисления в десятичную
- ascii — преобразование в строку ASCII
History
Версия | Описание |
2024.0.0 | url_decode() added to the webtools module. |
Report an issue | ||
<< toJSON | Web Tools | url_encode >> |