string urlDecode(string &SRC) { string ret; char ch; int i, ii; for (i=0; i
(ii); ret+=ch; i=i+2; } else { ret+=SRC[i]; } } return (ret); }
not the best, but working fine
Retrieved from http://hyacinth.byus.net/moniwiki/wiki.php/C++/url encode decode
last modified 2014-07-21 13:08:56