gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 13:05:22 27 4
gpt4 key购买 nike

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

我想做什么

我正在使用 MVC 3 制作博客,我想删除所有 HTML 格式标签,例如 <p> <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);

关于asp.net-mvc-3 - 删除 Razor MVC 3 中的 HTML 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11734877/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com