日期:2014-05-17 浏览次数:20503 次
string strhtml = @"<lrbc:ContentNoteRun Note=""注释"" Text=""文字"" Background=""#FFFFC800"" Tag=""ContentNote"" />";
string regpattern = @"(?is)<lrbc:ContentNoteRun[^>]*?Note=""([^""]*?)""[^>]*?Text=""([^""]*?)""[^>]*? />";
string resulthtml = Regex.Replace(strhtml, regpattern, @"<Run>$2</Run><Note value=""$1""/>");