|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] (no subject)Martin Probst martin at x-hive.comMon Jan 23 11:38:50 PST 2006
Hi,
> i ask for a url in a xml file and i get the result :
>
> http://www.some.com/myPic.jpg
>
> what should i do if i want to take only the file name?
> myPic.jpg
Well, you'll need to chop of the last part of that string, e.g. using
the fn:replace() function:
replace("myPic.jpg", "^.*/", "")
(replace everything up to the slash with the empty string, leaving
everything that's after the slash). XQuery has a big set of string
manipulation functions, so there are different ways of achieving this.
Martin
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






