我在字符串中有一些HTML,我已尽力将\r多次删除,但失败了。
text.Replace("\r\n", "").Replace("\r", "").Replace("\n", "");
最佳答案
您需要将结果分配回text
,例如:
text = text.Replace("\r\n", "").Replace("\r", "").Replace("\n", "");
关于c# - 从字符串中删除\r,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4492997/