Joe Almore
Joe Almore

Reputation: 4331

C# Parse HTML String WITHOUT using HTMLAgilityPack

I have an Html String which I need to parse, but WITHOUT using HTMLAgilityPack.

Using XPath is quite simple, but how do I get it working using XPath?

Upvotes: 0

Views: 1601

Answers (1)

Jonathan Wood
Jonathan Wood

Reputation: 67223

I'm not sure I understood your objection to HTML Agility Pack. I've just written a lightweight HTML parse and posted it on Github as HTML Monkey.

The initial version does not support XPath, but I'm still working on the project and looking for feedback and suggestions.

Upvotes: 1

Related Questions