01
12/2014
C# string正则表达式替换
1、引入包:using System.Text.RegularExpressions;
2、无需开始结束标记
3、相关代码:
line = Regex.Replace(line, "[\\s]+", " ");
转载请注明:康瑞部落 » C# string正则表达式替换
1、引入包:using System.Text.RegularExpressions;
2、无需开始结束标记
3、相关代码:
line = Regex.Replace(line, "[\\s]+", " ");
0 条评论