Does anyone know of any good C++ code that does this
|
|
|
Answering my own question... libcurl has this: http://curl.haxx.se/libcurl/c/curl_escape.html |
|||
|
|
not the best, but working fine ;-) |
|||
|
|
|
CGICC includes methods to do url encode and decode. form_urlencode and form_urldecode |
|||
|
Url encoding/decoding algorithm is not that difficult. I'd start from the specification: If you want pre-cooked code, just search the Internets: http://www.google.it/search?hl=it&q=Encode+Decode+URLs+in+C%2B%2B&meta= (yep, that address is url-encoded) |
|||
|
|
|
And source code... http://www.codeguru.com/cpp/cpp/string/conversions/article.php/c12759 Body must be at least 30 characters |
||||
|
|
|
Adding a follow-up to Bill's recommendation for using libcurl: great suggestion, and to be updated: |
||||
|
|
|
I ended up on this question when searching for an api to decode url in a win32 c++ app. Since the question doesn't quite specify platform assuming windows isn't a bad thing. InternetCanonicalizeUrl is the API for windows programs. More info here
InternetCrackUrl (here) also seems to have flags to specify whether to decode url |
|||
|
|