为了账号安全,请及时绑定邮箱和手机立即绑定

c# 中如何替换换行符

c# 中如何替换换行符

30秒到达战场 2019-04-09 20:25:37
c#中如何替换换行符stringstrpageContent=strpageContent.Replace("\r\n","");这种方式好像无法正确替换
查看完整描述

2 回答

?
慕码人8056858

TA贡献1803条经验 获得超6个赞

替换固定字符没必要用正则表达式,效率差。
stringstr="line1\r\nline2\nline3\r";
str=str.Replace(System.Environment.NewLine,"");//OK
str=str.Replace("\r","").Replace("\n","");//也OK
                            
查看完整回答
反对 回复 2019-04-09
?
牛魔王的故事

TA贡献1830条经验 获得超3个赞

stringpattern=@"\r*\n";
Regexrgx=newRegex(pattern);
stringoutputStr=rgx.Replace(strpageContent,"");
                            
查看完整回答
反对 回复 2019-04-09
  • 2 回答
  • 0 关注
  • 554 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信