
cvt:basename( $uri as xs:string ) as xs:string
Return the filename part of the URI, cutting off any query strings or fragments.
| Parameters | |
|---|---|
| uri | The URI to manipulate. |
xquery version "1.0-ml";
import module namespace cvt = "http://marklogic.com/cpf/convert"
at "/MarkLogic/conversion/convert.xqy";
cvt:basename( "http://example.com/a.path/myfile.doc" )
=> "myfile.doc"
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.