18 lines
296 B
Plaintext
18 lines
296 B
Plaintext
:sig
|
|
String uri_decode(String s)
|
|
|
|
:params
|
|
s : string containing URI encoded data
|
|
return value : a string that contains the decoded version of 's'
|
|
|
|
:see
|
|
>uri
|
|
|
|
:content
|
|
Decodes a URI-encoded string.
|
|
|
|
Related:
|
|
|
|
- PHP: `urldecode()` or `rawurldecode()`
|
|
- JavaScript / Node.js: `decodeURIComponent()`
|