标签: c# regex winforms
在HTML文件中的任何位置用tr标记替换th标记的table标记应该是什么样的正则表达式?
tr
th
table
答案 0 :(得分:3)
Regex.Replace(html, @"(?<=<(/)?)th(?=[\s>])", "tr", RegexOptions.IgnoreCase);