I have a string which contains numbers. Is it feasible only with XPath that I get only numbers from it?

For example: myString="abcd12ef34gh567", result: 1234567

link|improve this question

Good question, +1. See my answer for two solutions: a universal double-translate solution and an only XPath 2.0 solution using RegEx. – Dimitre Novatchev Sep 7 '11 at 17:40
feedback

2 Answers

up vote 3 down vote accepted

Use:

translate(., translate(.,'0123456789',''), '')

This is the so called "double-translate" method, first proposed by @Michael Kay and can be used both in XPath 1.0 and in XPath 2.0.

Of course, in XPath 2.0 using RegeX will generally be more efficient:

replace('abc123def590xyz', '[^\d]', '')
link|improve this answer
+1, "double-translate" very skilful solution. Regex improvement: \D – Kirill Polishchuk Sep 7 '11 at 17:59
@Kirill Polishchuk: You are welcome. – Dimitre Novatchev Sep 7 '11 at 18:05
feedback

If you can guarantee that the non-digit characters will be only lower-case letters (like in your example), you could do the following in XPath 1:

translate($myString, 'abcdefghijklmnopqrstuvwxyz', '')

You can add other characters to the alphabet string as necessary.

In XPath 2, you could use a regex:

replace($myString, '[^0-9]', '')
link|improve this answer
@_James_Sulak: It isn't necessary to know in advance the set of non-numeric characters -- see my answer. – Dimitre Novatchev Sep 7 '11 at 17:36
feedback

Your Answer

 
or
required, but never shown

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