public static string RemoveHTML(string strHTML)
{
System.Text.RegularExpressions.Regex Regexp=new System.Text.RegularExpressions.Regex("<.+?>");
string strReturn=Regexp.Replace(strHTML,"");
return strReturn;

相关文章:

猜你喜欢
  • 2021-05-26
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2022-01-11
  • 2022-02-03
相关资源
相似解决方案