c#字符串去掉空格的⼆种⽅法(去掉两端空格)使⽤字符串的⽅法:
trim();去掉字符串两端空格
字符串转数组去除空格split();切割
string.join();连接
复制代码代码如下:
class Program
{
static void Main(string[] args)
{
//原字符串
string str = " hello world,你好世界 ! ";
/
/去掉两端空格
str= str.Trim();
//以空格切割
string [] strArray= str.Split(new char[]{' '}, StringSplitOptions.RemoveEmptyEntries);
//以空格连接
string newStr= string.Join(" ", strArray);
Console.WriteLine(newStr);
Console.ReadKey();
}
}
使⽤正则的⽅法:
复制代码代码如下:
class Program
{
static void Main(string[] args)
{
//原字符串
string str = " hello world,你好世界 ! ";
string s = Regex.Replace(str, @"\s+", " ").Trim();
Console.WriteLine(s);
Console.ReadKey();
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论