XPath test if node value is number

Viewed 112048

How can I check if a node value is a number using XPath?

Any ideas?

7 Answers

I've been dealing with 01 - which is a numeric.

string(number($v)) != string($v) makes the segregation

Related