删除换行符不起作用

时间:2012-04-20 19:39:47

标签: c#

所以我有这个方法:

public static string ToProperText(this HtmlHelper helper, string text)
{
    System.Diagnostics.Debug.WriteLine(text);
    System.Diagnostics.Debug.WriteLine(text.Replace("\r\n", ""));

    string lineSeparator = ((char)0x2028).ToString();
    string paragraphSeparator = ((char)0x2029).ToString();

    System.Diagnostics.Debug.WriteLine(text.Replace("\r\n", string.Empty).Replace("\n", string.Empty).Replace("\r", string.Empty).Replace(lineSeparator, string.Empty).Replace(paragraphSeparator, string.Empty));
    System.Diagnostics.Debug.WriteLine(text.Replace("a", ""));
    return null;
}

当使用数据库中的某些数据调用时,这是输出:

<p>\r\n Vanaf nu worden de websiteberichten ook <u>automatisch</u> in de Nieuwssectie op het <strong>forum</strong> geplaatst.</p>\r\n
<p>\r\n Vanaf nu worden de websiteberichten ook <u>automatisch</u> in de Nieuwssectie op het <strong>forum</strong> geplaatst.</p>\r\n
<p>\r\n Vanaf nu worden de websiteberichten ook <u>automatisch</u> in de Nieuwssectie op het <strong>forum</strong> geplaatst.</p>\r\n
<p>\r\n Vnf nu worden de websiteberichten ook <u>utomtisch</u> in de Nieuwssectie op het <strong>forum</strong> gepltst.</p>\r\n

无论我做什么,\ r \ n都不会从字符串中删除,尽管其他替换确实有效。知道这里发生了什么吗?

由于

3 个答案:

答案 0 :(得分:2)

在这里猜猜..你试过了吗?

text.Replace("\\r\\n", "")?

“\ r \ n”将替换实际换行符,而不是实际文本'\ r \ n':

What character escape sequences are available?

或者,duluca的选择也应该有用。

答案 1 :(得分:2)

字符串可能已经被转义了。尝试

text.Replace("\\r\\n")

答案 2 :(得分:1)

尝试

System.Diagnostics.Debug.WriteLine(text.Replace(@"\r\n", ""));

查找添加的@符号。