使用LINQ将字符串拆分为N长度字符串列表

时间:2013-08-08 23:11:59

标签: c# linq

我知道String.Split的概念之前已经通过多种不同的方法得到了解决,但我对这个问题的LINQ解决方案特别感兴趣。

我试图编写一个扩展类来处理拆分,但两次尝试都有一些重大问题。所以对于以下内容:

string s = "ABCDEFGHIJKLMNOPQRSTUVWX";
var results = s.SplitEvery(4);

我想要一个像这样的列表: {“ABCD”,“EFGH”,“IJKL”,“MNOP”,“QRST”,“UVWX”}

这是我的扩展类:

public static class Extensions
{
    public static List<string> SplitEvery(this string s, int n)
    {
        List<string> list = new List<string>();

        var Attempt1 = s.Select((c, i) => i % n== 0 ? s.Substring(i, n) : "|").Where(x => x != "|").ToList();

        var Attempt2 = s.Where((c, i) => i % n== 0).Select((c, i) => s.Substring(i, n)).ToList();

        return list;
    }
}

尝试1插入虚拟字符串“|”每次不满足条件时,都会删除虚拟字符串的所有实例以创建最终列表。它有效,但创建坏字符串似乎是一个不必要的额外步骤。此外,如果字符串不能被n整除,则此尝试将失败。

尝试2是我试图仅选择索引可被N整除的子字符串,但Select语句中的'i'值与Where语句中的'i'值不对应,因此我得到的结果如下:{“ABCD”,“BCDE”等......}

我觉得我接近一个好的解决方案,但可以在正确的方向上使用有用的推动。有什么建议吗?

[编辑]

我最终提出了一些处理我的字符串拆分器的建议。它可能不是最快的,但作为LINQ的新手,这个实现对我来说是最简洁易懂的。

public static List<string> SplitEvery(this string s, int size)
{
    return s.Select((x, i) => i)
        .Where(i => i % size == 0)
        .Select(i => String.Concat(s.Skip(i).Take(size))).ToList();
}

感谢所有出色的建议。

8 个答案:

答案 0 :(得分:25)

string s = "ABCDEFGHIJKLMNOPQRSTUVWX";
var results = s.Select((c, i) => new { c, i })
            .GroupBy(x => x.i / 4)
            .Select(g => String.Join("",g.Select(y=>y.c)))
            .ToList();

您也可以使用morelinq's batch

var res = s.Batch(4).Select(x => String.Join("", x)).ToList();

如果您不介意使用副作用,也可以这样做

var res2 = s.SplitEvery(4).ToList();

public static IEnumerable<string> SplitEvery(this string s, int n)
{
    int index = 0;
    return s.GroupBy(_=> index++/n).Select(g => new string(g.ToArray()));
}

当然,每个字符串操作问题都应该得到正则表达式的答案:)

var res3 = Regex.Split(s, @"(?<=\G.{4})");

答案 1 :(得分:9)

你可以使用这个扩展方法,它使用简单的子字符串获取(我相信它比枚举字符并将它们连接成字符串更快):

public static IEnumerable<string> SplitEvery(this string s, int length)
{
    int index = 0;
    while (index + length < s.Length)
    {
        yield return s.Substring(index, length);
        index += length;                
    }

    if (index < s.Length)
        yield return s.Substring(index, s.Length - index);
}

答案 2 :(得分:9)

这是另一种解决方案:

var result = s.Select((x, i) => i)
              .Where(i => i % 4 == 0)
              .Select(i => s.Substring(i, s.Length - i >= 4 ? 4 : s.Length - i));

答案 3 :(得分:6)

public static IEnumerable<string> SplitEvery(this string s, int length)
{
    return s.Where((c, index) => index % length == 0)
           .Select((c, index) => String.Concat(
                s.Skip(index * length).Take(length)
             )
           );
}

陪审团对new String(chars.ToArray())是否会比String.Concat(chars)更快或更慢有所了解。

您当然可以附加.ToList()来返回列表,而不是IEnumerable

答案 4 :(得分:4)

Substring应该可以选择字符串的4个字符部分。你只需要小心最后一部分:

new Func<string, int, IEnumerable<string>>(
        (string s, int n) => 
           Enumerable.Range(0, (s.Length + n-1)/n)
           .Select(i => s.Substring(i*n, Math.Min(n, s.Length - i*n)))) 
("ABCDEFGHIJKLMNOPQRSTUVWX", 4)

注意:如果此答案转换为通用枚举的操作,则必须多次迭代集合(Count()Substring转换为Skip(i*n).Take(n))。

答案 5 :(得分:3)

这似乎有效:

public static IEnumerable<string> SplitEvery(this string s, int n) {
    var enumerators = Enumerable.Repeat(s.GetEnumerator(), n);
    while (true) {
        var chunk = string.Concat(enumerators
            .Where(e => e.MoveNext())
            .Select(e => e.Current));
        if (chunk == "") yield break;
        yield return chunk;
    }
}

答案 6 :(得分:1)

以下是几种LINQy方法:

public static IEnumerable<string> SplitEvery( this IEnumerable<char> s , int n )
{
  StringBuilder sb = new StringBuilder(n) ;
  foreach ( char c in s )
  {
    if ( sb.Length == n )
    {
      yield return sb.ToString() ;
      sb.Length = 0 ;
    }
    sb.Append(c) ;
  }
}

或者

public static IEnumerable<string> SplitEvery( this string s , int n )
{
  int limit = s.Length - ( s.Length % n ) ;
  int i = 0 ;

  while ( i < limit )
  {
    yield return s.Substring(i,n) ;
    i+=n ;
  }

  if ( i < s.Length )
  {
    yield return s.Substring(i) ;
  }

}

答案 7 :(得分:1)

这也有效,但需要“展开”IGrouping<x,y>

public static IEnumerable<String> Split(this String me,int SIZE) {
  //Works by mapping the character index to a 'modulo Staircase'
  //and then grouping by that 'stair step' value
  return me.Select((c, i) => new {
    step = i - i % SIZE,
    letter = c.ToString()
  })
  .GroupBy(kvp => kvp.step)
  .Select(grouping => grouping
    .Select(g => g.letter)
    .Aggregate((a, b) => a + b)
  );
}

编辑:使用LINQ的惰性评估机制(yield return),您也可以使用递归实现此目的

public static IEnumerable<String> Split(this String me, int SIZE) {      
  if (me.Length > SIZE) {
    var head = me.Substring(0,SIZE);
    var tail = me.Substring(SIZE,me.Length-SIZE);
    yield return head;        
    foreach (var item in tail.Split(SIZE)) {
      yield return item; 
    }
  } else { 
    yield return me;
  }
}

虽然,就个人而言,我远离Substring,因为它鼓励使用状态良好的代码(父级或全局范围内的计数器,索引等)。