Original: urlencode (JavaScript escape) implemented under VC (VC is unicode encoded)

Source: Internet
Author: User
VC is unicode encoded, Non-unicode encoding not considered!

 

Char hexs [] = {'0', '1', '2', '3', '4', '5', '6', '7 ', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F '};
Cstring urlencode (cstring Sin)
{
Cstring sout;
Int nlen = sin. getlength ();
Pbyte pinbuf = (pbyte) sin. getbuffer (0 );
Byte * poutbuf = new byte [nlen * 7];
Memset (poutbuf, 0, nlen * 7 );
Int n = 0;
Byte A, B;
For (INT I = 0; I <nlen; I ++)
{Byte A = pinbuf [I * 2];
Byte B = pinbuf [I * 2 + 1];
If (B> 0)
{

Poutbuf [n ++] = '% ';
Poutbuf [n ++] = 'U ';

A = B & 0xf;
B = (B & 0xf0)> 4;
Poutbuf [n ++] = hexs [B];
Poutbuf [n ++] = hexs [a];

A = A & 0xf;
B = (A & 0xf0)> 4;
Poutbuf [n ++] = hexs [B];
Poutbuf [n ++] = hexs [a];
}
Else if (a <'*' | A = ',' | (A> '9' & A <'@') | (A> 'Z' & A <'_') | A = ''' | A> 'Z ')
{
Poutbuf [n ++] = '% ';

A = A & 0xf;
B = (A & 0xf0)> 4;

Poutbuf [n ++] = hexs [B];
Poutbuf [n ++] = hexs [a];
}
Else
{
Poutbuf [n ++] =;
}
}

Sout = cstring (poutbuf );
Sin. releasebuffer ();
Delete [] poutbuf;
Return sout;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.