2

我有一个字符串变量,我定义为

String keyRight = new TextRange(rtb_KeyRight.Document.ContentStart, rtb_KeyRight.Document.ContentEnd).Text;

其中 rtb_KeyRight 是一个 wpf 富文本框

但是当我调试我的代码时,转义序列 \r\n 被添加到我的字符串中。

这样做不起作用:

keyRight.Replace("\r\n", "");

有任何想法吗?

基本上我只是提取richtextbox 的内容并将其放入一个字符串中。

4

1 回答 1

6

尝试:

keyRight = keyRight.Replace("\r\n", "");
于 2012-11-28T17:52:09.753 回答