c#中如何替换换行符stringstrpageContent=strpageContent.Replace("\r\n","");这种方式好像无法正确替换
2 回答
ABOUTYOU
TA贡献1812条经验 获得超5个赞
替换固定字符没必要用正则表达式,效率差。stringstr="line1\r\nline2\nline3\r";str=str.Replace(System.Environment.NewLine,"");//OKstr=str.Replace("\r","").Replace("\n","");//也OK
长风秋雁
TA贡献1757条经验 获得超7个赞
stringpattern=@"\r*\n";Regexrgx=newRegex(pattern);stringoutputStr=rgx.Replace(strpageContent,"");
添加回答
举报
0/150
提交
取消
