·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP.NET网站开发 >> Nicewayforstrip_tagsalike
I found this code works great as the function strip_tags in php to replace html tags from string and I just want to share it with you. Hope it benefits!
System.Text.RegularExPRessions.Regex regHtml = new System.Text.RegularExpressions.Regex("<[^>]*>"); string s = regHtml.Replace(InputString,"");