gpt4 book ai didi

c# - 如何在 C# 中读取和编辑 .txt 文件?

转载 作者:可可西里 更新时间:2023-11-01 09:16:50 25 4
gpt4 key购买 nike

例如,我有一个 txt 文件,内容为:

12 345 45
2342 234 45 2 2 45345
234 546 34 3 45 65 765
12 23 434 34 56 76 5

我想在所有数字之间插入一个逗号,在每行的开头添加一个左大括号,在每行的末尾添加一个右大括号。所以在编辑之后它应该是:

{12, 345, 45}
{2342, 234, 45, 2, 2, 45345}
{234, 546, 34, 3, 45, 65, 765}
{12, 23, 434, 34, 56, 76, 5}

我该怎么做?

最佳答案

为了乐趣和利润添加了一些 LINQ(优化空间;)):

System.IO.File.WriteAllLines(
"outfilename.txt",
System.IO.File.ReadAllLines("infilename.txt").Select(line =>
"{" +
string.Join(", ",
line.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries)
) + "}"
).ToArray()
);

关于c# - 如何在 C# 中读取和编辑 .txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1368539/

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