我有一个场景,我的文件中有一个悬空的CR(回车)。但是每一行都由CRLF分隔。
例如,我在 input.txt 文件中有以下行:
Stackoverflow 是一个可爱的网站,可以为任何新手用户 CRLF使用CR
如果我在我的代码中使用 ReadAllLines 方法。我得到 2 个不同的字符串。
string[] lines = File.ReadAllLines(input.txt)
lines[0] = "Stackoverflow is a lovely site to use "
lines[1] = "for any novice user "
现在我必须只消除上面一行中的CR并保留CRLF
这样我就可以得到;
lines[0] = "Stackoverflow is a lovely site to use for any novice user "
我怎样才能在 C# 中做到这一点?