public static string RemoveHTML(string strHtml)
  {
   
string strOutput=strHtml;
   Regex regex 
= new Regex(@"<[^>]+>|</[^>]+>");
   strOutput 
= regex.Replace(strOutput,"");
   
return strOutput;
  }

相关文章:

  • 2021-11-21
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
  • 2021-11-13
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-29
  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
相关资源
相似解决方案