string zhengze = "(?<=<title>)(.*?)(?=</title>)"//建立正则匹配
        try
        {

            Match m 
= Regex.Match(result, zhengze);  //正则匹配
            if (m.Success)
            {
                HtmlCodeNew 
= m.Value;
                Response.Write(HtmlCodeNew);
            }
        }
        
catch
        {
            
        }

相关文章:

  • 2022-12-23
  • 2021-10-05
  • 2021-10-04
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-04
  • 2021-11-14
  • 2021-11-21
  • 2021-11-11
  • 2021-08-12
相关资源
相似解决方案