vote up 1 vote down star
dev%40bionic%2Dcomms%2Eco%2Euk

I want to turn the above back in to readable text. Can anyone tell me how? Thanks

EDIT Forgive my oversight, PHP is the language of choice!

flag

3 Answers

vote up 10 vote down check

You haven't said which language, but in many the function you want is urldecode

(Looking at your other questions, you probably want PHP. It is urldecode there :))

link|flag
Thanks a lot for this! :D – Drew Dec 12 '08 at 10:35
uk.php.net is your friend – Jay Dec 12 '08 at 12:29
vote up 2 vote down

Although this wasn't what you were after, for reference in C# you can use HttpUtility.UrlEncode

EDIT

UrlDecode :P

http://msdn.microsoft.com/en-us/library/system.web.httputility.urldecode.aspx

link|flag
vote up 1 vote down

In JavaScript: decodeURIComponent("dev%40bionic%2Dcomms%2Eco%2Euk")

link|flag
unescape doesn't work for non-ASCII characters and is deprecated, use decodeURIComponent instead (same goes for escape -> encodeURIComponent) – Vatos Dec 12 '08 at 11:17

Your Answer

Get an OpenID
or

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