Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
5k views

Encode/Decode URLs in C++

Does anyone know of any good C++ code that does this
4
votes
1answer
181 views

Using Perl, how do I decode or create those %-encodings on the web?

I need to handle URI (i.e. percent) encoding and decoding in my Perl script. How do I do that? This is a question from the official perlfaq. We're importing the perlfaq to Stack Overflow.
1
vote
3answers
55 views

Why isn't % (percent) considered a reserved character in RFC 3986 (URI Syntax)?

Clearly % needs to be encoded. The wikipedia article on the standard says: Because the percent ("%") character serves as the indicator for percent-encoded octets, it must be percent-encoded as ...
1
vote
1answer
166 views

Arabic UTF Encoding to Percent Encoding in NSURL

am working on some mobile apps that send requests from mobile to internet via Http Requests the problem is that i send Arabic chars in this requests as parameters so i have to convert them from ...
1
vote
2answers
282 views

PHP: comparing URIs which differ in percent-encoding

In PHP, I want to compare two relative URLs for equality. The catch: URLs may differ in percent-encoding, e.g. /dir/file+file vs. /dir/file%20file /dir/file(file) vs. /dir/file%28file%29 ...
0
votes
1answer
35 views

Normalising possibly encoded URI strings in Java

Using Java, I want to strip the fragment identifier and do some simple normalisation (e.g., lowercase schemes, hosts) of a diverse set of URIs. The input and output URIs should be equivalent in a ...
0
votes
2answers
42 views

Percent encoding and sql LIKE query

How do I send a get http request which contains sql query with LIKE %item% clause? I've read about percent-encoding, but don't know yet about how do I handle such a requests. % sign is handled upon ...
0
votes
2answers
70 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
1answer
45 views

URL Encoding Percentage Space

Twitter sharing link problem with URL Encoding. i need to share this sentence. i am giving you 40% discount i am trying this to pass from url i+am+giving+you+40%+discount but its not working ...
0
votes
2answers
168 views

Percent-encoding of every utf-8 character with c#

I would like to prepare a string for to put it into a "post" request. Unfortunately all the methods I found to encode an url seem to apply percent-encoding only to a handful of characters. The ...
0
votes
0answers
35 views

Is URL percent-encoding case sensitive?

Is %3B treated equivalently to %3b in an URL?
0
votes
3answers
187 views

How to force ISO-8859-1 encoding for form data using LWP::UserAgent?

It seems that LWP::UserAgent always encodes form data as UTF-8, even if explicitely encode it as ISO-8859-1 as follows: use Encode; use LWP::UserAgent; use utf8; my $ua = LWP::UserAgent->new; ...
0
votes
1answer
64 views

Converting directly from HTMLEncoding to URLEncoding

I'm currently transfering a set of ASP classic pages over into our new MVC based intranet. While I'm not making any sigificant functionality changes I'm making some UI improvements and some more best ...
0
votes
2answers
490 views

Is there a quick function to encode/decode strings in Android using full percent encoding?

I want to use percent value encoding/decoding for some string operations in my Android application. I don't want to use a URI encode/decode function pair because I want to encode every character, not ...
0
votes
2answers
141 views

Should data attribute of object tag be percent-encoded?

Suppose my web application renders the following tag: <object type="application/x-pdf" data="http://example.com/test%2Ctest.pdf"> <param name="showTableOfContents" value="true" /> ...
0
votes
1answer
572 views

Url percent encoding not working

I'm trying to do a somewhat simple thing with no luck - i want to display hebrew/arabic characters in my Url. For example i want the url to display a file named: aאm.php So i've percent encoded the ...
0
votes
3answers
732 views

Percent encoding javascript

Is there a javascript function that takes a string and converts it into another string that is percent-encoded? That way something like "This Guy" turns into "This%20Guy". Thanks
0
votes
2answers
155 views

Is there a way to remove %20 from dynamically created breadcrumbs?

So, I was messing around with this Dynamic Breadcrumbs write-up, and came across an issue where if the directory name has a space in it, then %20 gets added to the actual visible breadcrumb. Would ...
0
votes
6answers
309 views

Turn a hex string into a percent encoded string in Python

I have a string. It looks like s = 'e6b693e6a0abe699ab'. I want to put a percent sign in front of every pair of characters, so percentEncode(s) == '%e6%b6%93%e6%a0%ab%e6%99%ab'. What's a good way of ...
0
votes
2answers
618 views

mod_rewrite rule to enforce canonical percent-encoding

We have a PHP app with a dynamic URL scheme which requires characters to be percent-encoded, even "unreserved characters" like parentheses or aphostrophes which aren't actually required to be encoded. ...