c# 中如何替换换行符

c#中如何替换换行符
stringstrpageContent=strpageContent.Replace("\r\n","");
这种方式好像无法正确替换
30秒到达战场
浏览 555回答 2
2回答

慕码人8056858

替换固定字符没必要用正则表达式,效率差。stringstr="line1\r\nline2\nline3\r";str=str.Replace(System.Environment.NewLine,"");//OKstr=str.Replace("\r","").Replace("\n","");//也OK

牛魔王的故事

stringpattern=@"\r*\n";Regexrgx=newRegex(pattern);stringoutputStr=rgx.Replace(strpageContent,"");
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript