zoukankan      html  css  js  c++  java
  • c#的中英文混合字符串截取 public static string SubString(string inputString, int byteLength)

      /// <summary>
            /// c#的中英文混合字符串截取(区分中英文)
            /// </summary>
            /// <param name="inputString"></param>
            /// <param name="byteLength">要输出的字节长度</param>
            /// <returns></returns>
            public static string SubString(string inputString, int byteLen)
            {
                int count=Encoding.UTF8.GetByteCount(inputString);
                if (count <= byteLen * 2)
                {
                    return inputString;
                }
                ASCIIEncoding ascii = new ASCIIEncoding();
                int tempLen = 0;
                string tempString = "";
                byte[] s = ascii.GetBytes(inputString);
                for (int i = 0; i < s.Length; i++)
                {
                    if ((int)s[i] == 63)
                    {
                        tempLen += 2;
                    }
                    else
                    {
                        tempLen += 1;
                    }
                    tempString += inputString.Substring(i, 1);
                    if (tempLen >= byteLen * 2)
                        break;
                }
                return tempString;
            }

  • 相关阅读:
    CSS input
    CSS 伪类选择器
    input placeholder 文字颜色修改
    css flex弹性布局学习总结
    jqGrid使用方法
    GridView控件RowDataBound事件的一个实例
    GridView控件RowDataBound事件中获取列字段值的几种途径 !!!
    .net中ckeditor的应用
    博客第一天
    用python实现数学多元数学方程式计算
  • 原文地址:https://www.cnblogs.com/DTWolf/p/4670593.html
Copyright © 2011-2022 走看看