1 取出div内内容string result = Regex.Match(html, @"<div.*?id=['""]artibody['""]>([\W\w]*?)</div>", RegexOptions.IgnoreCase).Groups[1].Value; 2 去标签 result = Regex.Replace(result, @"</?p>", "", RegexOptions.IgnoreCase);
Regex reg = new Regex(@"(?is)<div[^>]*?class=""blkContainerSblkCon""[^>]*>(.*?)</div>"); 追问 请问这个(?is)是什么意思,其他的都能看懂