c# 字符串帮助类

public class StringHelper
    {
        #region 全角半角互相转换
        ///


        /// 转全角的函数(SBC case)
        ///

        /// 任意字符串
        /// 全角字符串
        ///
        ///全角空格为12288,半角空格为32
        ///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248
        ///

        public static string ToSBC(string str)
        {
            //半角转全角:
            char[] c = str.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);
        }


        ///

转半角的函数(DBC case)
        /// 任意字符串
        /// 半角字符串
        ///
        ///全角空格为12288,半角空格为32
        ///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248
        ///

        public static string ToDBC(string str)
        {
            char[] c = str.ToCharArray();
            for (int i = 0; i < c.Length; i++)
            {
                if (c[i] == 12288)
                {
                    c[i] = (char)32;
                    continue;
                }
                if (c[i] > 65280 && c[i] < 65375)
                    c[i] = (char)(c[i] - 65248);
            }
            return new string(c);
        }
        #endregion 全角半角互相转换

        #region 按照字节数截取字符串 一个汉字算2个字节

        ///


        /// 按照字节截取字符串 一个汉字算2个字节
        ///

        /// 字符串
        /// 截取数量,单位:字节
        /// 返回字符串 是否带省略号;true 带 false 不带
        ///
        public static string Substring(string str, int length, bool flag = true)
        {
            byte[] bytes = System.Text.Encoding.Default.GetBytes(str);
            string resultStr = str;
            if (bytes.Length > length)
            {
                resultStr = "";
                for (int i = 0; i < str.Length; i++)
                {
                    byte[] b = System.Text.Encoding.Default.GetBytes(resultStr);
                    if (b.Length < length)
                    {
                        resultStr += str.Substring(i, 1);
                    }
                    else
                    {
                        if (flag)
                        {
                            resultStr += "...";
                        }
                        break;
                    }
                }
            }
            return resultStr;
        }
        #endregion 按照字节数截取字符串 一个汉字算2个字节

        #region Unicode 编码 解码

        ///


        /// unicode 编码;例:((int)'以').ToString("x") 
        ///

        ///
        ///
        public static string UnicodeDecode(string str)
        {
            string outStr = "";
            if (str != "")
            {
                for (int i = 0; i < str.Length; i++)
                {
                    outStr += @"\u" + ((int)str[i]).ToString("x");
                }
            }
            return outStr;
        }

        ///


        /// Unicode解码 按照\u分割;例如:(char)int.Parse("4ee5", System.Globalization.NumberStyles.HexNumber) 
        ///

        ///
        ///
        public static string UnicodeEncode(string str)
        {
            MatchCollection mc = Regex.Matches(str, @"\\u([\w]{2})([\w]{2})", RegexOptions.Compiled | RegexOptions.IgnoreCase);
            foreach (Match m in mc)
            {
                string hz = ((char)int.Parse(m.Groups[1].Value + m.Groups[2].Value, System.Globalization.NumberStyles.HexNumber)).ToString();
                str = str.Replace(m.ToString(), hz);
            }
            return str;
        }
        #endregion Unicode 编码 解码
    }

你可能感兴趣的:(c#,开发语言)