Something like ".//div[@id='foo\d+]" to capture div tags with id='foo123'.

I'm using .NET, if that matters.

link|improve this question

71% accept rate
@ripper234: I have provided the most complete information answering your question. – Dimitre Novatchev Jan 2 '09 at 15:54
@Dimitre - I just noticed this comment now. Accepted. – ripper234 Jul 4 '10 at 11:36
feedback

4 Answers

up vote 34 down vote accepted

As other answers have noted, XPath 1.0 does not support regular expressions.

Nonetheless, you have the following options:

.//div
   [starts-with(@id, 'foo') 
  and 
   'foo' = translate(@id, '0123456789', '')
  and
   string-length(@id) > 3   
   ]
link|improve this answer
feedback

XPath 2.0 has some functions which support regular expressions: matches(), replace(), tokenize()

In XPath 1.0 there is no regex support.

For .NET you can use the XPath engine in Saxon.Net to have XPath 2.0 support.

So if using the XPath 2.0 engine in Saxon.NET your example would turn to: ".//div[matches(@id,'foo\d+')]"

link|improve this answer
feedback

In .NET you have the ability to access your custom classes (and therefore regex if you can code it appropriately for your needs) via Extension Objects.

Tutorial here.

link|improve this answer
feedback

I also wanted to do this so created my own basic xpath module.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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