實際需要寫的一個 ASP.NET 清除 HTML 標記的函數,給大家一起學習一下,相信大家都能看懂。
以下是引用片段: //清除HTML函數 publicstaticstringNoHTML(stringHtmlstring) { //刪除腳本 Htmlstring=Regex.Replace(Htmlstring,@"]*?>.*?","",RegexOptions.IgnoreCase); //刪除HTML Htmlstring=Regex.Replace(Htmlstring,@"<(.[^>]*)>","",RegexOptions.IgnoreCase); Htmlstring=Regex.Replace(Htmlstring,@"([rn])[s]+","",RegexOptions.IgnoreCase); Htmlstring=Regex.Replace(Htmlstring,@"-->","",RegexOptions.IgnoreCase); Htmlstring=Regex.Replace(Htmlstring,@"