C # full-width half-width mutual Conversion Function

Source: Internet
Author: User

# Region full-width half-width conversion
/// <Summary>
/// Function for converting the fullwidth (SBC case)
/// </Summary>
/// <Param name = "input"> any string </param>
/// <Returns> fullwidth string </returns>
/// <Remarks>
/// The full-width space is 12288, and the half-width space is 32.
/// The relationship between the half-width (33-126) of other characters and the full-width (65281-65374) is as follows: the difference is 65248.
/// </Remarks>
Public static string ToSBC (string input)
{
// Halfwidth to fullwidth:
Char [] c = input. ToCharArray ();
For (int I = 0; I <c. Length; I ++)
{
If (c [I] = 32)
{
C [I] = (char) 12288;
Continue;
}
If (c [I] <127)
C [I] = (char) (c [I] + 65248 );
}
Return new string (c );
}


/// <Summary> function to the halfwidth (DBC case) </summary>
/// <Param name = "input"> any string </param>
/// <Returns> halfwidth string </returns>
/// <Remarks>
/// The full-width space is 12288, and the half-width space is 32.
/// The relationship between the half-width (33-126) of other characters and the full-width (65281-65374) is as follows: the difference is 65248.
/// </Remarks>
Public

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.