Tagged Questions
7
votes
5answers
1k views
How to “URL decode” a string in Emacs Lisp?
I've got a string like "foo%20bar" and I want "foo bar" out of it.
I know there's got to be a built-in function to decode a URL-encoded string (query string) in Emacs Lisp, but for the life of me I ...
2
votes
1answer
164 views
How to decode “\u0026” in a URL?
I want decode URL A to B:
A) http:\/\/example.com\/xyz?params=id%2Cexpire\u0026abc=123
B) http://example.com/xyz?params=id,expire&abc=123
This is a sample URL and I look for a general solution ...
0
votes
0answers
30 views
Does URL querystring encoding preserve order for multi-valued keys?
http://www.example.com?a=1&a=2 has a valid form-urlencoded querystring and has two values (1 and 2) for the key a.
Is there any spec or standard for URL consumers guaranteeing ordering (or lack ...