gpt4 book ai didi

c# - 我如何从字符串中删除外部

...

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:19 26 4
gpt4 key购买 nike

我想从数据库中查询一个字符串(html)并将其显示在网页上。问题是数据有一个

 <p> around the text (ending with </p>

我想在返回此数据的 View 模型或 Controller 操作中去除此外部标记。在 C# 中执行此操作的最佳方法是什么?

最佳答案

对于您的需求来说可能有点矫枉过正,但是如果您想解析 HTML,您可以使用 HtmlAgilityPack - 总体上肯定是比这里建议的大多数解决方案更清洁的解决方案,尽管它可能没有那么高效:

HtmlDocument doc = new HtmlDocument();
doc.LoadHtml("<p> around the text (ending with </p>");
string result = doc.DocumentNode.FirstChild.InnerHtml;

关于c# - 我如何从字符串中删除外部 <p>...</p>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4846098/

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