gpt4 book ai didi

c# - 如何将 html 文档保存到字符串中?

转载 作者:行者123 更新时间:2023-11-30 13:19:41 25 4
gpt4 key购买 nike

 HtmlDocument doc = new HtmlDocument();
doc.Load(yourhtml);
doc.Save(Console.Out);

如何将其保存为字符串而不是 Console.Out

最佳答案

string s = doc.DocumentNode.OuterHtml;

var sw = new StringWriter();
doc.Save(sw);
var s = sw.ToString();

关于c# - 如何将 html 文档保存到字符串中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18399694/

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