C#中将字符串中的连续多个空格都替换成一个其他符号 代码— string ss = richTextBox1.Text;//待转换文本 richTextBox2.Text = new Regex("[\\s]+").Replace(ss, ",");