我正在尝试使用 Regex.Replace 过滤字符串,但我被困在这样的替换文本上:[02] 或 [06]。
我现在使用的代码是:
string cleanData = Regex.Replace(stringtext, "[..]", "");
有人有什么想法吗?
我正在尝试使用 Regex.Replace 过滤字符串,但我被困在这样的替换文本上:[02] 或 [06]。
我现在使用的代码是:
string cleanData = Regex.Replace(stringtext, "[..]", "");
有人有什么想法吗?