I have the problem to get the node if there is more than one attribute.

Example:

<div class="atag btag" />

This is my xpath expression: //*[@class='atag']

The expression only works with <div class="atag" /> but not for the above shown.

Any suggestions?

link|improve this question
1  
It's worth pointing out, I think, that "atag btag" is a single attribute, not two. You're trying to do substring matching in xpath. – skaffman Sep 7 '09 at 19:07
Yes you're right - thats what I want. – crazyrails Sep 7 '09 at 19:14
2  
+1 for asking about XPath instead of regular expressions! :) – TrueWill Sep 7 '09 at 22:21
:) :) :) :) :) :) – crazyrails Sep 8 '09 at 5:25
feedback

3 Answers

mjv's answer is a good start but will fail if atag is not the first classname listed.

The usual approach is the rather unwieldy:

//*[contains(concat(' ', @class, ' '), ' atag ')]

this works as long as classes are separated by spaces only, and not other forms of whitespace. This is almost always the case. If it might not be, you have to make it more unwieldy still:

//*[contains(concat(' ', normalize-space(@class), ' '), ' atag ')]

(Selecting by classname-like space-separated strings is such a common case it's surprising there isn't a specific XPath function for it, like CSS3's '[class~="atag"]'.)

link|improve this answer
Thanks a lot! I've tested your solution and it works well. – crazyrails Sep 7 '09 at 19:49
+1 from me, straightforward solution. – Tomalak Sep 8 '09 at 9:23
bah, xpath needs some fixes – the0ther Sep 20 '10 at 23:10
The answer by surupa123 below is much better, used contains() just with the class you're interested in, no need for concats as far as I can see. – Redbeard Dec 2 '11 at 3:02
Couldn't tokenize, exists, and index-of be combined to solve this in a rather ugly yet very concise way? – cha0site Apr 19 at 13:09
feedback

This will select them all regardless of the position of attributes

//div[contains(@class,'atag') and contains(@class ,'btag')]

link|improve this answer
This is a much better answer than the above, I'm surprised it hasn't been voted up. – Redbeard Dec 2 '11 at 3:01
8  
@Redbeard: It's a literal answer but not usually what a class-matching solution should aim for. In particular it would match <div class="Patagonia Halbtagsarbeit">, which contains the target strings but is not a div with the given classes. – bobince Dec 2 '11 at 22:52
feedback

EDIT: see bobince's solution which uses contains rather than start-with, along with a trick to ensure the comparison is done at the level of a complete token (lest the 'atag' pattern be found as part of another 'tag').

"atag btag" is an odd value for the class attribute, but never the less, try:

//*[starts-with(@class,"atag")]
link|improve this answer
you can use this if your XPath engine supports the starts-with command, for example JVM 6 doesn't support it as far as i remember – Mohamed Faramawi Sep 7 '09 at 19:00
Thank you - that works fine! – crazyrails Sep 7 '09 at 19:16
3  
@mjv: It's common for a CSS class attribute to specify multiple values. That's how CSS is done. – skaffman Sep 7 '09 at 19:33
4  
@mjv You cannot guarantee that that name will appear at the start of the class attribute. – Alan Krueger Oct 6 '09 at 15:27
@thuktun @skaffman. Thanks, great comments. I 'redirected' to bobince solution accordingly. – mjv Oct 6 '09 at 16:37
feedback

Your Answer

 
or
required, but never shown

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