类别:程序开发
日期:2022-05-12 浏览:2280 评论:0
通过正则表达式 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(); } } }
运行结果如下:
本文标题:C# 字符串 string 去除所有空格
本文链接:https://vtzw.com/post/990.html
版权声明:本文不使用任何协议授权,您可以任何形式自由转载或使用。
发表评论 / 取消回复