本文介绍了如何删除回车和换行符.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
如何删除回车和换行符.
例如:"IDS
软件
财富列兵.公司."
结果将是:"IDS Software Fortune Pvt.ltd."
在此先感谢
Hi All,
How to Remove Carriage return and line feeds.
Ex: "IDS
Software
Fortune Pvt. ltd."
Result will be come:"IDS Software Fortune Pvt. ltd."
Thanks in advance
推荐答案
string removed = original.Replace("\n", string.Empty).Replace("\r", string.Empty);
string result = Regex.Replace(@"Some string
with multiple lines.", @"\r|\n", string.Empty);
这篇关于如何删除回车和换行符.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!