Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
7k views

JavaScript URL Decode function

What's the best JavaScript URL decode utility? Encoding would be nice too and working well with jQuery is an added bonus.
6
votes
7answers
5k views

Encode/Decode URLs in C++

Does anyone know of any good C++ code that does this
5
votes
1answer
7k views

jQuery urlencode/decode patch help

I'm using this jQuery urlencode and urldecode plugin - very simple and easy to use but it doesn't, in its original form, remove + from the string. The one comment on the home page suggests a patch ...
4
votes
1answer
558 views

SQL Server Url Decoding

I need to run a query against a legacy table that stores URL encoded text. I need this text to be decoded in my results. How do I achieve this?
3
votes
2answers
158 views

How do I decode a string with escaped unicode?

I'm not sure what this is called so I'm having trouble searching for it. How can I decode a string with unicode from http\u00253A\u00252F\u00252Fexample.com to http://example.com with JavaScript? I ...
3
votes
3answers
133 views

Which encoding?

does anybody know in which way the string 'Krummh%C3%B6rn' is encoded? Plain text is "Krummhörn". I need to decode strings like this one in Python and tried urllib.unquote('Krummh%C3%B6rn') The ...
3
votes
2answers
1k views

How to encode url in javascript and decode it in C#

I have a url with querystrings through which some data are passed. I want to retrieve the data in the server side. What is the solution for this problem
3
votes
2answers
417 views

Using awk printf to urldecode text

Edited to correct the question I'm using awk to urldecode some text. If I code the string into the printf statement like so: printf "%s", "\x3D" it correctly outputs =. The same if I have the whole ...
3
votes
1answer
4k views

Calling UrlDecode in a C# .NET 4.0 Visual Studio 2010 Console Application?

OK, for some reason Microsoft removed System.Web but we can import System.Net.WebUtility and call HtmlDecode(), but how can we call UrlDecode()? Please answer for .NET 4.0/VS2010 B2 ONLY.
3
votes
3answers
1k views

Re-encode url from utf-8 encoded to iso-8859-1 encoded

I have file:// links with non-english characters which are UrlEncoded in UTF-8. For these links to work in a browser I have to re-encode them. file://development/H%C3%A5ndplukket.doc becomes ...
2
votes
1answer
37 views

jRuby / Rails trying to find equivlent to php str_replace or urldecode

Not sure how to do this in Ruby/Rails only thing I could come up with is gsub. Which is giving me an undefined method. What I am doing is via jQuery $.post is passing data to jRuby. My problem is, ...
2
votes
4answers
524 views

How to decode url containing Japanese char in Delphi prior 2009?

I need to decode: file://localhost/G:/test/%E6%B0%97%E3%81%BE%E3%81%90%E3%82%8C%E3%83%AD%E3%83%9E%E3%83%B3%E3%83%86%E3%82%A3%E3%83%83%E3%82%AF.mp3 into file://localhost/G:/test/気まぐれロマンティック.mp3 How ...
2
votes
2answers
575 views

Why does grails URL params decoding behave differently on server vs. local

Let's say I have the following entry in my grails URLMappings.groovy: "/actionName/param1"(controller:'myController', action:'myAction') When I call an URL where param1 includes + as a special ...
2
votes
3answers
286 views

Whats the point of HttpUtility.UrlDecode

Whats the point of HttpUtility.UrlDecode when .net already decodes the querystring when you request it. Is this a hangover from classic ASP or am I missing something?
2
votes
2answers
153 views

How to URLENCODE url with variables?

I need to URLENCODE this: <?php echo ...
2
votes
2answers
643 views

Javascript equivalent to php's urldecode()

I wrote a custom xml parser and its locking up on special characters. So naturally I urlencoded them into my database. I can't seem to find an equivalent to php's urldecode(). Are there any ...
2
votes
2answers
698 views

php $_REQUEST data is only half-decoded

I am retrieving an encoded url via querystring. I need to pass it again to the next page. When I retrieve it the first time, using $_REQUEST['url'], only the slashes are decoded, e.g: ...
1
vote
0answers
22 views

autmatic urldecode asp.net

i have this url in a c# web application, framework 4 /en/song/august+burns+red/1%2f16%2f2011 my problem is that in the rewrite module, the url of the request comes as ...
1
vote
2answers
37 views

how to safely eval an urlencode-ed dictionary in Python?

I should communicate with an online service that sends me the following data urlencoded: data_to_process = {...} args = {'args0': data_to_process, 'action': 'save'} result = urllib2.urlopen(..., ...
1
vote
2answers
48 views

Best way to parse URL string to get values for keys?

I need to parse a URL string like this one: ...
1
vote
1answer
67 views

Get Encoded Value

I have no control over domain.com. I can only give a redirect URL parameter such as below: www.domain.com?retUrl=www.example.com%3Fparameter%3Dvalue Right after I give retURL ...
1
vote
1answer
123 views

Decode char UTF8 escapes in Boost Spirit

question asked: Spirit-general list Hello all, I'm not sure if my subject is correct, but the testcode will probably show what I want to achieve. I'm trying to parse things like: '%40' to '@' ...
1
vote
2answers
166 views

MySQL SELECT with URL Decode

Is there a way to perform a MySQL query and have one of the columns in the output directly urldecode, rather than have PHP do it. For example this table 'contacts' would contain, ...
1
vote
1answer
183 views

Java decode string escaped by Actionscript

I have an environment where strings are percent encoded by Actionscript escape() function and then passed to Java for decoding. I have for example a test string "m é". It is passed to Actionscript ...
1
vote
2answers
114 views

sun.net.www.ParseUtil.decode() vs java.net.URLDecoder.decode()

I have some legacy code that is calling sun.net.www.ParseUtil.decode(). I would like to avoid calling vendor specific functions, so I want to replace the call with something else. Can I use ...
1
vote
4answers
156 views

Remove all backslashes from PHP urldecoded string

I am trying to remove all backslashes from a url-decoded string, but it is outputting \ rather than outputting the url-decoded string with \ removed. Please can you tell me my problem. <?php ...
1
vote
1answer
600 views

php URL decode get '+' from URL

So I am trying to encode/decode a url that when decoded will return the encoded + symbols from teh url. For example, I encodewebsite.com/index.php?eq=1+12 which when encoded turns the + into %2B, as ...
1
vote
1answer
384 views

PHP: problems with url encoding (rawurlencode and rawurldecode)

I am creating a token which I am passing as part of the url on a page. I encode the string using rawurlencode() and send it as a token, however, I find that when I decode the received token (passed as ...
1
vote
1answer
373 views

Firefox automatically decoding URL? CodeIgniter allowed characters problem

When visiting this address on w3schools the %28 in the address is automatically decoded to ( in the Firefox address bar as soon as I press enter to load the page. ...
1
vote
4answers
312 views

Struts 2.0.14 GET parametrs are not URLDecoded, is that a bug?

I've got a problem with the parameters passed in the url. Let say the request is: /struts/MyAction.action?param=foo%40bar.com The action field gets the "param" field set to "foo%40bar.com", is that ...
1
vote
3answers
545 views

encoding/decoding textarea value using rawurlencode/rawurldecode

When encoding newline of textarea before storing into mysql using PHP with rawurlencode function encodes newline as %0D%0A. For Example: textarea text entered by user: a b encoding using ...
1
vote
2answers
428 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
304 views

URL decoding not working as expected

My Browser shows URL with file name as http://www.example.com/pdf/204177_20090604_Chloorhexidine_DCB_oogdruppels_0%2C1%25.pdf Actual File name is 204160_20090604_Atropine_DCB_oogdruppels_0,5%.pdf ...
1
vote
1answer
656 views

How to decode the url in php where url is encoded with encodeURIComponent()

Hey Guys, How to decode the url in php where url is encoded with encodeURIComponent()? I have tried the urldecode() but then also..i don't the url which i have encoded... I have to do this in php.. ...
1
vote
2answers
295 views

Decoding international chars in AppEngine

I'm making a small project in Google AppEngine but I'm having problems with international chars. My program takes data from the user through the url "page.html?data1&data2..." and stores it for ...
1
vote
1answer
105 views

How to decode this data

I have a field in the DB that is type bytea and this is an example of the data in: ...
1
vote
3answers
587 views

JQUERY AJAX, Issues with spaces being sent to the server, Why?

I'm using the following code to post to the server which is then sent to a MYSQL query to find matches via search. $.ajax({ url: '/search/spotlight/', data: "q=" + $(this).val(), success: ...
1
vote
5answers
945 views

PHP urlencode and decode

All, There is a text area say <input type="submit"> And if a user gives the input as, here is my name and my mail id is "a@x.com" And when the data is posted on the server side ...
1
vote
1answer
894 views

Request.Querystring removes characters from encrypted text

In my application I take a user's e-mail address, encrypt it, and URLEncode it, and pass it along into a QueryString. email = Server.UrlEncode(aes.Encrypt(email)); The landing page does a ...
1
vote
2answers
1k views

Can't find HttpServerUtility class in System.Web in C#

I'm trying to call the HttpServerUtuility.URLDecode function in C# using Visual Studio 2005, but it can't be found. I'm using System.Web properly, but the class doesn't seem to be there. Do I need ...
0
votes
0answers
15 views

urldecode() function not decoding whitespace +

I am working on a form to submit a file for deletion. As many of these filenames have whitespace elements I have used the urlencode() function. However, when I urldecode() the + symbol is not decoded ...
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
1answer
43 views

urldecode and pluses - PHP

I have a form field that I plonk a query string into. This is cleaned in so far as it is urldecoded and then I throw in htmlentities so it doesn't create flawed HTML. In other words: <input ...
0
votes
0answers
36 views

Auto determining encoding for HttpUtility.UrlDecode

One website uses several different encoding for encodings URL: UTF8 and WIN-1251. How can I determine encoding used in each URL? For example I have 2 URLS. First URL was encoded with WIN-1251, second ...
0
votes
2answers
97 views

Decode PHP Curl Script

How Can I decode this php curl script: http://pastebin.com/raw.php?i=YWE1i4U7 It's got un-encoded characters here and there, like the "t"s, the "v"s, etc.
0
votes
5answers
58 views

Encoded URL does not work

I am confused about encoded URLs. For example, when I write my browser: stackoverflow.com/questions I can successfully view the page. However, when I write: stackoverflow.com%2Fquestions I am ...
0
votes
1answer
76 views

url decoding in asp.net

I have a form in asp.net with a few textboxes. I'm trying to post the values in them to the server using jquery ajax, but having problems. I'm using javascript encodeURIComponent for the values of the ...
0
votes
1answer
54 views

Decoding foreign language characters in url

I am decoding characters in a URL by using HTTPUtility.URLDecode. Here are the characters I have to decode: %26 = "&" %28 = "(" %29 = ")" %20 = " " %5B = "[" %5D = "]" %2C = "," %23 = "#" %F3 = ...
0
votes
2answers
570 views

How to URL Decode in iOS - Objective C

The stringByReplacingPercentEscapesUsingEncoding method is not working properly as it's not decoding special symbols that dont start with a % character, i.e., the + character. Does anyone know of a ...
0
votes
3answers
100 views

Java URL Decoder not working as expected

I have a simple program which tries to decode an encoded URL. But for some reason this doesn't seem to be working. Would anybody have any idea why this is happening? I have spent hours but haven't ...

1 2