gpt4 book ai didi

c# - 如何使用 C# 编辑文本文件?

转载 作者:行者123 更新时间:2023-11-30 19:49:45 25 4
gpt4 key购买 nike

假设我有一个包含以下内容的文本文件:

Hello!
How are you?

我想通过一个生成具有以下内容的输出文件的简单应用程序调用该文件:

buildLetter.Append("Hello!").AppendLine(); 
buildLetter.Append("How are you?").AppendLine();

如您所见,每一行都应放在“”之间。

我们将不胜感激。

最佳答案

void ConvertFile(string inPath, string outPath)
{
using (var reader = new StreamReader(inPath))
using (var writer = new StreamWriter (outPath))
{
string line = reader.ReadLine();
while (line != null)
{
writer.WriteLine("buildLetter.Append(\"{0}\").AppendLine();",line.Trim());
line = reader.ReadLine ();
}
}
}

您应该自己添加一些 I/O 异常处理。

关于c# - 如何使用 C# 编辑文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3486734/

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