asp.net-mvc-3 – 删除Razor MVC 3中的HTML格式

我正在使用MVC 3和Razor View引擎.

我想做什么

我正在使用MVC 3制作博客,我想删除所有HTML格式标签,例如< p> &LT b取代; < I>等等..

我正在使用以下代码. (确实有效)

@{
 post.PostContent = post.PostContent.Replace("<p>"," ");   
 post.PostContent = post.PostContent.Replace("</p>"," ");
 post.PostContent = post.PostContent.Replace("<b>"," ");
 post.PostContent = post.PostContent.Replace("</b>"," ");
 post.PostContent = post.PostContent.Replace("<i>"," ");
 post.PostContent = post.PostContent.Replace("</i>"," ");
 }

我觉得必须有一个更好的方法来做到这一点.任何人都可以指导我这个.

解决方法

谢谢 Alex Yaroshevich,

这是我现在使用的..

post.PostContent = Regex.Replace(post.PostContent,@"<[^>]*>",String.Empty);

相关文章

项目要求通过网站上传大文件,比如视频文件,通过摸索实现了文件分片来上传,然后后台进行合并。 使用了...
安装新版本的Nginx(vim /etc/yum.repos.d/nginx.repo) [nginx-stable] name=nginx stable repo baseu...
什么是 SignalR&#160;ASP.NET Core ASP.NET Core SignalR 是一种开放源代码库,可简化将实时 web 功...
在Windows下使用Docker,我们选择Docker Desktop这个软件,非常方便。 ## Docker Desktop介绍及安装 Do...
项目开始设计的是运行在windows下,所以一开始采用的是windows服务模式来获取多媒体文件信息,后来要求...
银河麒麟高级服务器操作系统V10是针对企业级关键业务,适应虚拟化、云计算、大数据、工业互联网时代对主...