URL decoding: Difference between revisions

m
Replace deprecated functions
m (→‎{{header|Wren}}: Minor tidy)
m (Replace deprecated functions)
Line 1,686:
works like ''fromPercentEncoded'' and additionally decodes '+' with a space.
Both functions return byte sequences.
To decode Unicode characters it is necessary to convert them from UTF-8 with ''utf8ToStri''[https://seed7.sourceforge.net/libraries/unicode.htm#fromUtf8(in_string) fromUtf8] afterwards.
<syntaxhighlight lang="seed7">$ include "seed7_05.s7i";
include "encoding.s7i";
29

edits