C# 数组按照固定跨度, 间隔进行分组合并

C# 数组按照固定跨度, 间隔进行分组合并
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApp16
{
    class Program
    {
        static void Main(string[] args)
        {
            // 数组
            string[] arr = new string[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" };
            // 固定长度间隔
            int space = 2;
            int N = arr.Length;
            for (int i = 0; i < N; i = i + space)
            {
                string temp = "";
                int stop = i + space;
                for (int j = i; j < (stop > N ? N : stop); ++j)
                {
                    temp += arr[j] + ",";
                }

                // 输出合并
                Console.WriteLine(temp);
            }

            Console.Read();
        }
    }
}


输出结果


作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角