mikebai.com

  • Home
  • dev
  • DotNET
  • M365
  • 搞笑
  • 杂七杂八
  • FocusDict
個人BLOG
it developer
  1. Main page
  2. DotNET
  3. Main content

C#全角半角转换函数

2010-04-01 92hotness 0likes 0comments

        #region 全角半角转换
        
/// <summary>
        
/// 转全角的函数(SBC case)
        
/// </summary>
        
/// <param name="input">任意字符串</param>
        
/// <returns>全角字符串</returns>
        
///<remarks>
        
///全角空格为12288,半角空格为32
        
///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248
        
///</remarks>
        public  static string ToSBC(string input)
        {
            
//半角转全角:
            char[] c=input.ToCharArray();
            
for (int i = 0; i < c.Length; i++)
            {
                
if (c[i]==

Tag: Nothing
Last updated:2010-04-01

mikebai

This person is a lazy dog and has left nothing

Like
< Last article
Next article >

COPYRIGHT © 2025 mikebai.com. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang