6

我在将制表符分隔的字符串写入 txt 文件时遇到问题。

//This is the result I want:    
First line. Second line.    nThird line.

//But I'm getting this:
First line./tSecond line./tThird line.

下面是我的代码,我在其中传递要写入 txt 文件的字符串:

string word1 = "FirstLine.";
string word2 = "SecondLine.";
string word3 = "ThirdLine.";
string line = word1 + "/t" + word2 + "/t" + word3;

System.IO.StreamWriter file = new System.IO.StreamWriter(fileName, true);
file.WriteLine(line);

file.Close();
4

3 回答 3

18

用于\t制表符。使用String.Format可能会提供一个更具可读性的选项:

line = string.Format("{0}\t{1}\t{2}", word1, word2, word3);
于 2012-07-26T03:28:04.263 回答
5

要编写制表符,您需要使用"\t". 这是一个反斜杠(在回车键上方),而不是一个正斜杠。

所以你的代码应该是:

string line = word1 + "\t" + word2 + "\t" + word3;

对于它的价值,这里有一个常见的“转义序列”列表,例如"\t" = TAB

于 2012-07-26T03:25:54.163 回答
0

\t不用于/t字符串中的制表符。所以你的字符串line应该是:

string line = word1 + "\t" + word2 + "\t" + word3;

如果你这样做:

Console.WriteLine(line);

输出将是:

FirstLine.      SecondLine.     ThirdLine.
于 2012-07-26T03:23:27.627 回答