How to convert JavaScript full-width characters to half-width characters

Source: Internet
Author: User

The Helper House (www.bkjia.com) Tutorial used to convert the full-width characters into a half-width place in the work and found this conversion function.

Reference content is as follows:
// Str: string to be converted
Function DBC2SBC (str)
{
Var result = "";
For (var I = 0; I <str. length; I ++)
{
Code = str. charCodeAt (I); // obtain the unicode code of the Current Character
If (code> = 65281 & code <= 65373) // In this unicode encoding range, all English letters have various characters
{
Var d = str. charCodeAt (I)-65248;
Result + = String. fromCharCode (d); // converts the unicode code of the full-width character to the unicode code of the corresponding half-width character
}
Else if (code = 12288) // Space
{
Var d = str. charCodeAt (I)-12288 + 32;
Result + = String. fromCharCode (d );
}
Else
{
Result + = str. charAt (I );
}
}
Return result;
}

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.