我正在尝试编写一个正则表达式模式来修改我的 datagridview 的标题。我需要从每个字符串中删除以下字符:空格 [ ] * # ?/\@()。"" '' 我非常困惑,我需要你的帮助来定义 C# 中正则表达式的模式。这是我的示例代码:
DataTable d_new = d;
for (int i = 0; i < d.Columns.Count; i++)
{
string t = d.Columns[i].Caption;
string regex = "\\s+"; // this needs to Be expanded
string t_new = Regex.Replace(t, regex, "_");
d.Columns[i].Caption = t_new;
}