<< toJSON Web Tools url_encode >>

Scilab Help >> Web Tools > url_decode

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.

url_decode(Strings) uses the CURL parser to performs URL conversion for each element of 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

History

VersionDescription
2024.0.0 url_decode() added to the webtools module.

Report an issue
<< toJSON Web Tools url_encode >>