Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Assuming several multiclass divs as demonstrated in the following HTML:

<div class="class_one class_two class_three classfour classfive classsix">

<div class="class_one class_two class_three classfour classfive">

<div class="class_one class_two class_three classfour classsix">

Is there a single Jsoup select expression that will select all 3 of them?

To clarify, thinking that the "lowest common denominator" will select all 3, I tried the following:

div[class=class_one class_two class_three classfour] 

But it selected none!

On the other hand, using the full multiselect syntax works, but it can only select one of the above, e.g.:

div[class=class_one class_two class_three classfour classfive classsix]

Is there a way to select all 3 of them, using a single Jsoup select statement?

share|improve this question
3  
Shouldn't you first reply to my answer to your previous recent question before posting a new one? Why answer this question if you will ignore it like the previous? And where is your sscce? – Hovercraft Full Of Eels Sep 27 '11 at 2:03
@Hovercraft Full Of Eels Thanks for your reply and questions. Your answer to previous recent question helped me find a bug in my code. Now I am trying to understand how Jsoup works in this regard, so that I can update the previous question accordingly (or delete it). If you notice, the above quetion is not at all the same as the previous question. In fact, it's almost opposite. – ef2011 Sep 27 '11 at 2:12
His answer didn't got any feedback and you didn't edit the question to provide more context about the concrete problem. To me, at first sight, the both questions boil down to the same issue and the above should actually be edited into your previous recent question. – BalusC Sep 27 '11 at 2:25
@BalusC You're right the previous question, but this question is not about context or concrete problem. It's really a question about understanding a Jsoup feature which for some reason is not documented. I could of course come up with numerous SSCCEs to discover how it works emperically, but that if Jsoup behaves in a way that's not per its indended design, I will never know this. Really, all I am asking is whether this particular Jsoup multiclass select is an "or" or "and" operation. – ef2011 Sep 27 '11 at 2:36
1  
Okay then, but please provide feedback to Hovercraft's answer on your previous recent question. – BalusC Sep 27 '11 at 2:41
show 1 more comment

1 Answer

up vote 2 down vote accepted

This is not specific to Jsoup, but to CSS. The [attribute=name] selector does an exact match. Even the ordering matters. You want to use the .classname selector here instead. The following should work:

Elements divs = document.select("div.class_one.class_two.class_three.classfour");
// ...

Note that ordering of the classnames doesn't matter here. This selector selects all <div> elements which has all of the given classnames present.

See also:

share|improve this answer
OMG You have just revealed to me a misconception I had up until now: I always thought that [class=name] and .classname are 100% equivalent in Jsoup. Now I see that they are slightly different in at least the exact match aspect. Thanks so much! – ef2011 Sep 27 '11 at 2:46
Correction: in CSS :) – BalusC Sep 27 '11 at 2:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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