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<one.length();j++)
{
indxD = one.find_first_of ( " " , 0 );
one.replace(indxD,1,"%2B",3);
}
---------------------------------------------------------------------------------
Thank You In Anticipation,
John



LinkBack URL
About LinkBacks


