来自文本文件 c# 的二维数组 [英] 2d Array from text file c#

查看:20
本文介绍了来自文本文件 c# 的二维数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个看起来像这样的文本文件

I have a text file that looks like this

1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
41 42 43 44 45 46 47 48 49 50
51 52 53 54 55 56 57 58 59 60
61 62 63 64 65 66 67 68 69 70
71 72 73 74 75 76 77 78 79 80
81 82 83 84 85 86 87 88 89 90
91 92 93 94 95 96 97 98 99 100

在一个 10 x 10 的网格中.使用 C#我需要获取文本文件并将其转换为二维整数数组,以便我可以在独立级别上操作整数.请帮助解决不了,

in a 10 x 10 grid. using c# I need to take the text file and turn it into a 2d array of integers so that I can manipulate the integers on an independent level. Please help cant work it out,

推荐答案

String input = File.ReadAllText( @"c:myfile.txt" );

int i = 0, j = 0;
int[,] result = new int[10, 10];
foreach (var row in input.Split('
'))
{
    j = 0;
    foreach (var col in row.Trim().Split(' '))
    {
        result[i, j] = int.Parse(col.Trim());
        j++;
    }
    i++;
}

索引将以0为基础,因此如果您想访问第四行的第10列:

The indices will be 0-based so if you want to access 10th column in fourth row:

Console.WriteLine(result[3,9]); //40

这篇关于来自文本文件 c# 的二维数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆