gpt4 book ai didi

c# - 删除或修剪字符串末尾的回车符

转载 作者:行者123 更新时间:2023-11-30 12:16:57 28 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Removing carriage return and new-line from the end of a string in c#

如何删除字符串末尾的回车符。我已经用谷歌搜索过了,但我找不到我需要的代码。

这是我当前的代码:

return s.Replace("\n", "").Replace("\r", "").Replace("\r\n", "").Trim();

当然,所有出现的旧字符都将被替换。

我试过这些:

公共(public)字符串修剪(字符串s){

string[] whiteSpace = {"\r", "\n", "\r\n"};

foreach(string ws in whiteSpace)
{
if (s.EndsWith(ws))
{
s = s.Substring(0, s.Length - 1);
}
}
return s;

但对我不起作用,也许我错过了什么或者我的代码有问题

我也尝试过使用正则表达式,但我无法得到我需要的东西。

我从word文档中获取字符串,然后将其转移到另一个文档中。

我会很感激任何帮助。Tnx

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