我正在尝试使用以下代码压缩 C# 列表中的所有空白,但它不会编译...我在整个Regex
表达式下得到红色的“错误”行,我不明白为什么。有谁可以帮我离开这里吗?
char[] delimiterChars = { ',', ':', '|', '\n' };
List<string> sortBox1 = new List<string>(textBox2.Text.Split(delimiterChars));
#region >> COMPRESS WHITESPACE
if (checkBox2.Checked)
{
sortBox1 = Regex.Replace(sortBox1, @"\s+", " ").Trim();
}
#endregion