我有一个字符串列表,每个字符串需要用正则表达式进行拆分,而不是保存在同一个列表中。
List<string> a = new List<string>();
a.Add("big string with a lot of words");
a=a.SelectMany(item=> Regex.Split("\r\n",item)).ToList();
我只是想确保这不会重新排序创建的字符串部分?
是否有一个网站提供有关方法运行时和编译器优化的信息?
由于
答案 0 :(得分:0)
使用Linq-to-Objects,除非您致电OrderBy
或OrderByDescending
,否则不会重新排序结果集的元素。
但是,我不会为此使用正则表达式,一个简单的string.Split
就可以了:
List<string> a = new List<string>();
a.Add("big string with a lot of words");
a = a.SelectMany(item => item.Split(new[] { "\r\n" }, StringSplitOptions.None)).ToList();