Decode encoded URL strings using CURL.
decoded = url_decode(encodedStrings)
encodedStrings ones.
url_decode(…) reverses the url_encode(…) action.
encodedStrings.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
| Version | Description |
| 2024.0.0 | url_decode() added to the webtools module. |