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

In CSS selectors, you can select an element with an attribute who’s value starts with a string.

E.g. both of these paragraphs

<p class="geoff"></p>
<p class="geoff-de-geoff"></p>

can be selected using this selector:

p[class^=geoff]

Is there an equivalent in XPath? I know how to select based on the complete value of an attribute, i.e.

//p[@class='geoff']

Can you select based on the start of the attribute’s value in XPath?

share|improve this question

3 Answers

up vote 2 down vote accepted

there is starts-with function:

//p[starts-with(@class,'geoff')]

ADD-ON:

If you are interested in mapping css selectors to xpath queries, you can have a look at this table, unfortunately there is no answer to your question (but you already got it), but there are other selectors. Also interesting page CSS => XPath, your task it solved as:

descendant-or-self::p[starts-with(@class, 'geoff')]

well, quite good answer generated ;)

share|improve this answer
Hey, nice links there. Boom. Accepted answer status is yours. – Paul D. Waite Mar 8 '11 at 16:00
//p[starts-with(@class, 'geoff')]
share|improve this answer

Aha — the starts-with() function does it.

//p[starts-with(@class,'geoff')]
share|improve this answer

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.