vote up 0 vote down star

Hello,

I'm wondering if there's a jQuery-like css selector that can be used in C#.

Currently, I'm parsing some html strings using regex and thought it would be much nicer to have something like the css selector in jQuery to match my desired elements.

Let me know if I'm not too clear on the subject.

Thanks

flag

So, I guess there's currently nothing like this – Dave Oct 16 at 22:32
How does XPath querying not meet your needs? Load string into DOM object with XML or HTML parser, and query for elements based on whatever you like. Just like jQuery. – patjbs Oct 16 at 23:00
If you desire an easier to grep query structure, have you tried using linq queries? – patjbs Oct 16 at 23:03

4 Answers

vote up 2 vote down check

Fizzler is exactly what you're looking for...

link|flag
vote up 0 vote down

Not quite jQuery like, but this may help: http://www.codeplex.com/htmlagilitypack

link|flag
yes... I just looked over the html agility pack few days ago. But, it still uses XPath for matching. It's not that I don't like XPath. But, the cleanness of the css selector syntax is much better imo. – Dave Oct 16 at 22:08
LINQ-to-Objects is probably what I'd use. But right - not as clean as selectors. – Daniel Oct 19 at 20:54
vote up 1 vote down

I'm not entirely clear as to what you're trying to achieve, but if you have a HTML document that you're trying to extract data from, I'd recommend loading it with a parser, and then it becomes fairly trivial to query the object to pull desired elements.

The parser I linked above allows for use of XPath queries, which sounds like what you are looking for.

Let me know if I've misunderstood.

link|flag
May I know what parser you are refering to? I just want something like Doc.select("div.foo") to return all the elements that is a div and have class foo. – Dave Oct 16 at 21:58
I added a link to the text, which points to a SO question about parsing HTML. In particular, the HTML Agility pack parser I've used in the past to load HTML docs and query against them with great success. – patjbs Oct 16 at 22:00
vote up 2 vote down

For XML you might use XPath...

link|flag
Oh yea, I forgot to mention that. I wanted something like the css selector for it's simplicity and clarity. – Dave Oct 16 at 21:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.