Re: [xsl] Q - Parsing & Manipulating Strings from XSL

Subject: Re: [xsl] Q - Parsing & Manipulating Strings from XSL
From: Ahsan Ali <doubleletter@xxxxxxxxx>
Date: Mon, 30 May 2005 17:53:12 +0400
Michael,


Is there way to do this in pure XSLT instead of Xquery ?? Or a way to
embed this xquery statement into an xsl file ?


> You've got a choice between using numeric arithmetic or duration
arithmetic.
> It's probably cleanest to use duration arithmetic though it's a bit
verbose.
>
> declare variable $one-minute := xdt:dayTimeDuration('PT1M')
>
> then
>
> let $time := xs:integer(JrnyTm) * $one-minute,
>     $hours := hours-from-duration($time),
>     $minutes := minutes-from-duration($time)
> return
>     concat($hours, ' hrs ', $minutes, ' minutes ')
>

Regards, Ahsan

Current Thread