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);字符串转数组去除空格
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论