3

C#コンソールアプリで分割文字列を2次元配列にするにはどうすればよいですか?

char[,] table2x2 = new char[2, 2]; 
string myString = "11A23A4A5A"; 
string[] splitA = myString.Split(new char[] { 'A' });

出力が

Console.WriteLine(table3x3[0, 0]); //output: 11
Console.WriteLine(table3x3[0, 1]); //output: 23
Console.WriteLine(table3x3[1, 0]); //output: 4
Console.WriteLine(table3x3[1, 1]); //output: 5

元の質問に戻りました。前もって感謝します!

4

1 に答える 1

7
// your code, char[,] replaced by string[,]
string[,] table2x2 = new string[2, 2];  
string myString = "11A23A4A5A"; 
string[] splitA = myString.Split(new char[] { 'A' }); 

// this converts splitA into a 2D array
// Math.Min is used to avoid filling past the array bounds
for (int i = 0; i < Math.Min(splitA.Length, 2*2); i++) {
    table2x2[i / 2, i % 2] = splitA[i];
}
于 2012-06-01T14:13:49.550 に答える