如何从字符串中删除回车符

时间:2013-04-26 15:39:33

标签: string visual-studio-2010 strip carriage-return

我正在尝试处理一个字符串,以便它不包含回车符,但是我遇到了一些麻烦。我目前正在使用:

Visual Studio 2010:

strText = strText.Replace(vbCr, "")

回车没有被删除,谢谢。

1 个答案:

答案 0 :(得分:0)

你试过吗

strText = strText.Replace("\n\r", "");

strText = strText.Replace("\n", "");

strText = strText.Replace("\r", "");

strText  = strText.TrimEnd('\r', '\n');