Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How could I check if string has already been encoded?

For example, if I encode TEST==, I get TEST%3D%3D. If I again encode last string, I get TEST%253D%253D, I would have to know before doing that if it is already encoded...

I have encoded parameters saved, and I need to search for them. I don't know for input parameters, what will they be - encoded or not, so I have to know if I have to encode or decode them before search.

share|improve this question

4 Answers

up vote 4 down vote accepted

Use regexp to check if your string contains illegal characters (i.e. characters which cannot be found in URL-encoded string, like whitespace).

share|improve this answer
I did not do this, but this is the solution. – Trick Feb 19 '10 at 11:32
1  
So how will you differentiate between hello%20world and interest20%growth ? The first is a valid urlencoded string, the other is a string that has to be escaped and does not produce a valid unescape. – SF. Feb 19 '10 at 12:38
Checking for illegal characters does not include the percent symbol because it is not illegal it just gets escaped. When you check for the percent symbol you may have a URI encoded string if it is followed by "25". This only works if you know that your input is either not encoded or encoded exactly 1 time and that the input does not naturally include sequences that URI encoding generates. – benrifkah Mar 27 '12 at 20:02

Decode, compare to original. If it does differ, original is encoded. If it doesn't differ, original isn't encoded. But still it says nothing about whether the newly decoded version isn't still encoded. A good task for recursion.

I hope one can't write a quine in urlencode, or this algorithm would get stuck.

share|improve this answer
You gave me the idea, how to do this. Now my SQL looks like SELECT * FROM something WHERE param= " + param + " OR param = "+encode(param) – Trick Feb 19 '10 at 11:30
How do you know that you don't need SELECT * FROM something WHERE param= " + param + " OR param = "+encode(param) + " OR param = "+encode(encode(param))? That way lies infinite regress. – sverkerw Feb 19 '10 at 14:04
1  
well, true except of a case where "good enough" is enough; if the 0.01% of users really want the program not to work, it won't work for them. Sometimes the extra, extreme clauses are just not worth the effort and the overhead. – SF. Feb 21 '10 at 12:19
This fails if your string contains windows variable names like %DESCRIPTION% which decodes to ÞSCRIPTION% or %ABOUT% which becomes «OUT%. – benrifkah Mar 22 '12 at 16:14
@benrifkah: true but then there is no way to tell them apart if the input is completely arbitrary. – SF. Mar 23 '12 at 11:44
show 1 more comment

You can't know for sure, unless your strings conform to a certain pattern, or you keep track of your strings. As you noted by yourself, a String that is encoded can also be encoded, so you can't be 100% sure by looking at the string itself.

share|improve this answer

Joel on software had a solution for this sometime back - http://www.joelonsoftware.com/articles/Wrong.html
Or You may add some prefix to the Strings.

share|improve this answer
Maybe even better: A wrapper type struct QuotedString {char *str;} to pass around, then you can explicitly (and findably) mess with its insides. – sverkerw Feb 19 '10 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.