C#解析DOM

使用AngleSharp,nuget添加引用即可

代码参考:

  var html="
aaa
bbb
"; var config = new Configuration().WithJs(); IBrowsingContext context = BrowsingContext.New(config); IDocument document = await context.OpenAsync(req => req.Content(html)); var sels = document.QuerySelectorAll("div").ToList();

不懂的评论我,欢迎打赏

C#解析DOM_第1张图片 打赏 2¥

你可能感兴趣的:(c#,java,开发语言)