我有一个我定义为
的字符串变量String keyRight = new TextRange(rtb_KeyRight.Document.ContentStart, rtb_KeyRight.Document.ContentEnd).Text;
其中rtb_KeyRight是一个wpf richtextbox
但是当我调试我的代码时,转义序列\ r \ n被添加到我的字符串中。
这样做不起作用:
keyRight.Replace("\r\n", "");
有什么想法吗?
基本上我只是提取richtextbox的内容并将其放在一个字符串中。
答案 0 :(得分:5)
尝试:
keyRight = keyRight.Replace("\r\n", "");