vote up 4 vote down star

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

I'm using .NET, if that matters.

flag

63% accept rate
@ripper234: I have provided the most complete information answering your question. – Dimitre Novatchev Jan 2 '09 at 15:54

3 Answers

vote up 9 vote down check

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|flag
vote up 1 vote down

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|flag
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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