类别:程序开发

日期:2022-05-18 浏览:1540 评论:0

你或许知道你能使用String.Trim方法去除字符串的头和尾的空格,不幸运的是. 这个Trim方法不能去除字符串中间的C#空格。  

static void Main()
{
            //demo1     除去空格,提取出各个单词
            string s = "a b c";
            string[] word = s.Split(new char[] { ' ' });
            foreach (string temp in word)
                Console.WriteLine(temp);

            //demo2     直接去除所有空格
            s=s.Replace(" ","");
            Console.WriteLine(s);

            //demo3     去掉首尾空格
            s = " aaa ";
            s = s.Trim();
            Console.WriteLine(s);
}

另一版本如下:    

string text = "  My test\nstring\r\n is\t quite long  ";  
string trim = text.Trim();

这个'trim' 字符串将会是:

"My test\nstring\r\n is\t quite long"  (31 characters)

另一个清除C#空格方法是使用 String.Replace 方法, 但是这需要你通过调用多个方法来去除个别C#空格:

string trim = text.Replace( " ", "" );  
trim = trim.Replace( "\r", "" );  
trim = trim.Replace( "\n", "" );  
trim = trim.Replace( "\t", "" );

 这里最好的方法就是使用正则表达式.你能使用Regex.Replace方法, 它将所有匹配的替换为指定的字符.在这个例子中,使用正则表达式匹配符"\s",它将匹配任何空格包含在这个字符串里C#空格, tab字符, 换行符和新行(newline).

string trim = Regex.Replace( text, @"\s", "" );

这个'trim' 字符串将会是:

"Myteststringisquitelong"  (23 characters)


本文标题:C# 字符串 相关操作
本文链接:https://vtzw.com/post/996.html
作者授权:除特别说明外,本文由 零一 原创编译并授权 零一的世界 刊载发布。
版权声明:本文不使用任何协议授权,您可以任何形式自由转载或使用。
 您阅读本篇文章共花了: 

历史上的今天
05月
18

 可能感兴趣的文章

评论区

发表评论 / 取消回复

必填

选填

选填

◎欢迎讨论,请在这里发表您的看法及观点。