Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
6
votes
3answers
6k views

Unicode URL decoding

The usual method of URL-encoding a unicode character is to split it into 2 %HH codes. (\u4161 => %41%61) But, how is unicode distinguished when decoding? How do you know that %41%61 is \u4161 vs. ...
2
votes
1answer
166 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 ...
2
votes
1answer
93 views

Decoding strings in c#

I have an app that works with some texts and I need to decode strings like: example\x27s string example\u0027s string For the first one I tried using ...
2
votes
3answers
581 views

Decode a string in Java

How do I properly decode the following string in Java ...
2
votes
2answers
2k views

Why would Apache be URL decoding my query string?

My Web host has refused to help me with this, so I'm coming to the wise folks here for some help "black-box debugging". Here's an edited version of what I sent to them: I have two (among other) ...
1
vote
2answers
429 views

ASP.NET MVC parse URL query part

I want something to turn ?a=5&b=8 part of a URL into a dictionary { a:5, b:8 }. Is there such method in .net or am I on my own? I need to parse query part so that I can implement my own URL ...
1
vote
3answers
649 views

ASP.Net MVC 2.0 : unescaping URL query parameters

I have following URL: http://localhost:8041/Reforge.aspx?name=Cyan%ECde&realmId=1 notice %EC in the value of name parameter. %EC = 236 = ì (igrave) In my action method: public ActionResult ...
1
vote
1answer
353 views

How to decode string to use with Google Language Detection API?

I want to use Google Language Detection API in my app to detect language of url parameter. For example user requests url http://myapp.com/q?Это тест and gets message "Russian". I do it this ...
0
votes
2answers
51 views

Extract hexadecimal values from a percent encoded URL

Let's say for example i have URL containing the following percent encoded character : %80 It is obviously not an ascii character. How would it be possible to convert this value to the corresponding ...
0
votes
0answers
14 views

Is there some sort of convention for mixed url encoding

is there a convention like RFC for the use of mixed encodings? http://www.someurl.com/filter?firstID=akjfaks102034%26secondID=ABCDEFGH%26look=blue&light=off I have here a Web-Application wich ...
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 ...
0
votes
1answer
97 views

Java UrlDecode not wotking when we send encoded value from URl

When we initialize the string in class with same value it decodes it properly.When get same string from url it is not able to decode it.We are using "UTF-8".Below is the code for doing it.Any ...