C#字符串分割效率比较

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#字符串分割效率比较相关的知识,希望对你有一定的参考价值。

//分割字符串效率比较
        public static void Fund()
        {
            //1.用string.Split方法
            //a.字节数组:
            //625毫秒/百万次

            string str1 = "acabcdeabcdeabcde";
            string[] strArr1 = null;

            System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
            sw.Start();

            for (int i = 0; i < 10000000; i++)
            {
                strArr1 = str1.Split(new char[1] { ‘c‘ });
            }

            sw.Stop();

            Console.WriteLine(sw.ElapsedMilliseconds);//以毫秒为单位

            //b.字符串数组

            //703毫秒/百万次
            string str3 = "acabcdeabcdeabcde";
            string[] strArr3 = str3.Split(new string[1] { "cde" }, StringSplitOptions.None);

            //2.Regex.Split方法
            //7093毫秒/百万次
            string str4 = "acabcdeabcdeabcde";
            string[] strArr4 = Regex.Split(str4, "cde");
        }

  

以上是关于C#字符串分割效率比较的主要内容,如果未能解决你的问题,请参考以下文章

C# 字符串的处理方法(比较/截取/分割/替换等)

C#里分割字符串和字符串转换为网络发送字节数组的方法

C#的String.Split 分割字符串用法详解的代码

记录C#常用的代码片段

JavaScript 片段

如何返回分割某个字符串的分隔符? (C#)[重复]