在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
通过正则表达式 Regex.Replace() 和匹配符 \s(匹配任何空白字符,包括空格、制表符、换页符等,与[\f\n\t\r\v]等效),代码如下:
using System; using System.Text.RegularExpressions; namespace Test { class Program { static void Main(string[] args) { string testStr = " this\n is\r a \ttest "; Console.WriteLine(Regex.Replace(testStr, @"\s", "")); Console.Read(); } } } 运行结果如下:
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论