split用法

假设txt文档中的二维数组如下:

123,121 |141
12          |        | 12 
12 | 123 |234
23 | 12   |123  | 123

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            char[] chspilt = new char[] { ',','|',' '};
            string[,] temp = new string[4,4];
            try
            {
                using (StreamReader sr = new StreamReader(@"C:\Users\wang\Desktop\新建文本文档.txt"))
                {
                    
                    
                    int i = 0;
                    while (sr.Peek() != -1)
                    {
                        string temp1 = sr.ReadLine();
                        string[] split = temp1.Split(chspilt,StringSplitOptions.RemoveEmptyEntries);
                        int count;
                        count = split.Length;
                        switch (count)
                        {
                            case 4:
                                for(int j=0;j<count;j++)
                                {
                                    temp[i, j] = split[j];
                                }
                                break;
                            case 3 :
                                for (int j = 0; j < count; j++)
                                {
                                    temp[i, j] = split[j];
                                }
                                break;
                            case 2:                               
                                    temp[i, 0] = split[0];
                                    temp[i, 3] = split[1];
                                break;     
                        }
                        i++;
                    }
                }
            }
            catch(Exception ex)
            {
                Console.WriteLine(ex.ToString());
            }

            //显示读取的二维数组
            int pCount = 0;
            for(int i=0;i<temp.GetLength(0);i++)
            {
               for(int j=0;j<temp.GetLength(1);j++)
               {
                   
                   if (temp[i, j] == null)
                   {
                       Console.Write("\t");
                   }
                   else 
                   {
                       Console.Write(temp[i,j]+"\t");
                   }
                   pCount++;
                   if (pCount == 4)
                   {
                       Console.WriteLine();
                       pCount = 0;
                   }       
               }
           }
           Console.ReadLine();
        }
    }
}

注意:char[] chspilt = new char[] { ',','|',' '}; // 遇到char[]中的字符时进行分割。

string[] split = temp1.Split(chspilt,StringSplitOptions.RemoveEmptyEntries);忽略空格



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值