Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
12
Task/URL-decoding/00-TASK.txt
Normal file
12
Task/URL-decoding/00-TASK.txt
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
This task (the reverse of [[URL encoding]] and distinct from [[URL parser]]) is to provide a function
|
||||
or mechanism to convert an URL-encoded string into its original unencoded form.
|
||||
|
||||
|
||||
;Test cases:
|
||||
* The encoded string "<code><nowiki>http%3A%2F%2Ffoo%20bar%2F</nowiki></code>" should be reverted to the unencoded form "<code><nowiki>http://foo bar/</nowiki></code>".
|
||||
|
||||
* The encoded string "<code><nowiki>google.com/search?q=%60Abdu%27l-Bah%C3%A1</nowiki></code>" should revert to the unencoded form "<code><nowiki>google.com/search?q=`Abdu'l-Bahá</nowiki></code>".
|
||||
|
||||
* The encoded string "<code><nowiki>%25%32%35</nowiki></code>" should revert to the unencoded form "<code><nowiki>%25</nowiki></code>" and '''not''' "<code><nowiki>%</nowiki></code>".
|
||||
<br><br>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue