代码虽短功能却超强,运行效率也很高!public static string ClearHtmlCode(string text){text = text.Trim();if (string.IsNullOrEmpty(text))return string.Empty;text = Regex.Replace(text, "[/s]{2,}", " "); //two or more spacestext = Regex.Replace(text, "(<[b|B][r|R]/*>)+|(<[p|P](.|/n)*?>)", " "); //<br>text = Regex.Replace(text, "(/s*&[n|N][b|B][s|S][p|P];/s*)+", " "); //text = Regex.Replace(text, "<(.|/n)*?>", string.Empty); //any other tagstext = Regex.Replace(text, "/<//?[^>]*>/g", string.Empty); //any other tagstext = Regex.Replace(text, "/[ | ]* /g", string.Empty); //any other tagstext = text.Replace("'", "''");text = Regex.Replace(text, "/ [/s| | ]* /g", string.Empty);return text;} 追问 。。。不是java大哥,是js