Is there some kind of split() function in xpath? Say I have this xml:

<root>
   <path>C:\folder\filename</path>
</root>

And I want to retrieve 'filename', how can I do this? I know I can get the nodevalue like this:

//path/text()

How can I get only the filename? (I know there exists a concat() function, so maybe there is a split() function)?

Thank you

link|improve this question

47% accept rate
Good question, +1. Besides the good answers you've got, see my answer for two other possible solutions. – Dimitre Novatchev Nov 23 '10 at 17:00
feedback

2 Answers

up vote 1 down vote accepted

If you have an xpath-2.0 capable API, you can solve this in two ways:

replace technique

Try using:

fn:replace(string,pattern,replace)

e.g.

fn:replace(//path/text(),".*/","")

tokenize technique

You may get some mileage from tokenize:

fn:tokenize(string,pattern)

e.g. (thanks to Martin)

tokenize(/root/path, '\\')[last()]

http://www.w3schools.com/Xpath/xpath_functions.asp#string

link|improve this answer
1  
Yes, tokenize(/root/path, '\\')[last()] allows that but note that both replace and tokenize are XPath 2.0 and not available in XPath 1.0 so you need an XPath 2.0 implementation like Saxon 9 (saxon.sourceforge.net). – Martin Honnen Nov 23 '10 at 11:37
Thanks, I couldn't work out whether last applied to dynamically generated collections. – Alex Brown Nov 23 '10 at 11:39
Thanks alot! :) – Rise_against Nov 23 '10 at 12:18
feedback

While I would use:

tokenize(/*/*, '\\')[last()]

there are also numerous other ways to obtain the desired string:

  codepoints-to-string
    (reverse
      (string-to-codepoints
         (substring-before
            (codepoints-to-string
                 (reverse
                    (string-to-codepoints(/*/*)
                  )
              ),
              '\'
            )
          )
       )
     )

Or:

  substring(/*/*,
            index-of(string-to-codepoints(/*/*),
            string-to-codepoints('\')
            )
            [last()]
          + 1
           )
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.