2

我有一个文本文件,详细信息如下,没有标题

 Name1 Text1 This is the message1
 Name2 Text2 This is the message2

如果我这样使用..

string[] allLines = File.ReadAllLines("TextFile.log");
for (int i = 0; i < allLines.Length; i++
{
    string[] items = allLines[i].Split(new char[] { ' ' });
    MessageBox.Show("This is Name field : " + items[0])      
    MessageBox.Show("This is Text field : " + items[1])      
    MessageBox.Show("This is Message field : " + items[2])      
}

如果我使用上面的代码,前两个字段可以正常工作,但我怎样才能在单列中获得第三列“This is the message1”?

4

1 回答 1

8

只需指定在使用方法的适当重载进行拆分时最多需要 3 个项目Split

string[] items = allLines[i].Split(new char[] { ' ' }, 3);
于 2013-07-07T15:49:51.590 回答