gpt4 book ai didi

c# - 从 c#.net 写入制表符分隔的 txt 文件

转载 作者:太空狗 更新时间:2023-10-29 20:49:23 26 4
gpt4 key购买 nike

我在将制表符分隔的字符串写入 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();

最佳答案

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

line = string.Format("{0}\t{1}\t{2}", word1, word2, word3);

关于c# - 从 c#.net 写入制表符分隔的 txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11661884/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com