C#区分中英文按照指定长度截取字符串的代码

将内容过程中比较常用的内容备份一下,下面的内容是关于C#区分中英文按照指定长度截取字符串的内容,应该能对小伙伴有所好处。

        public static string GetSubString(string str, int length)

        {

            string temp = str;

            int j = 0;

            int k = 0;

            for (int i = 0; i < temp.Length; i++)

            {

                if (Regex.IsMatch(temp.Substring(i, 1), @"[u4e00-u9fa5]+"))

                {

                    j += 2;

                }

                else

                {

                    j += 1;

                }

                if (j <= length)

                {

                    k += 1;

                }

                if (j > length)

                {

                    return temp.Substring(0, k) + "..";

                }

            }

            return temp;

        }

你可能感兴趣的:(C#区分中英文按照指定长度截取字符串的代码)