URLEncoder
-
Hi, What's the equivalent of JAVA's "URLEncoder.encode" in VC++? or is there an alternate way of encoding to be compatable with Java's "URLDecoder.decode"? Many Thanks, John:confused:
-
Hi, What's the equivalent of JAVA's "URLEncoder.encode" in VC++? or is there an alternate way of encoding to be compatable with Java's "URLDecoder.decode"? Many Thanks, John:confused:
Write one! it's not hard. 1. replace any occurance of space " " with "+". 2. any character that is not A-Z a-z 0-9 - . _ is replaced with the token %XX where XX is the string hex representation of the ascii character it replaces. Signature space for rent. Apply by email to....
-
Write one! it's not hard. 1. replace any occurance of space " " with "+". 2. any character that is not A-Z a-z 0-9 - . _ is replaced with the token %XX where XX is the string hex representation of the ascii character it replaces. Signature space for rent. Apply by email to....
Hi, I've written a code which replaces characters in a string with their respective URLEncode (i.e a " " will be replaced by "+" etc..). However the code crashes at execution. Please help!! Here's the code extract; Code: ------------------------------------------------------------------------------ for(j=0;j