How do I convert an ISO 8601 duration to seconds using XSLT 1.0 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T18:05:02Z http://stackoverflow.com/feeds/question/627212 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/627212/how-do-i-convert-an-iso-8601-duration-to-seconds-using-xslt-1-0 0 How do I convert an ISO 8601 duration to seconds using XSLT 1.0 Kevin Gale 2009-03-09T17:26:00Z 2009-03-09T17:51:21Z <p>It seems like this is easy to do in XSLT 2.0 but Microsoft in its infinite wisdom doesn't support XSLT 2.0 in Visual Studio 2005.</p> http://stackoverflow.com/questions/627212/how-do-i-convert-an-iso-8601-duration-to-seconds-using-xslt-1-0/627286#627286 2 Answer by vartec for How do I convert an ISO 8601 duration to seconds using XSLT 1.0 vartec 2009-03-09T17:44:36Z 2009-03-09T17:44:36Z <p>With XSLT 1.0 you'll have to use substring-before() and substring-after() to split it into individual fields. Then just multiply. No doubt it is possible, although it seems very laborious.</p> http://stackoverflow.com/questions/627212/how-do-i-convert-an-iso-8601-duration-to-seconds-using-xslt-1-0/627318#627318 1 Answer by divo for How do I convert an ISO 8601 duration to seconds using XSLT 1.0 divo 2009-03-09T17:51:21Z 2009-03-09T17:51:21Z <p>One option would be to do all the parsing and calculation in XSLT.</p> <p>However, another option would be to extend XSLT with a custom script function in C#:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:myext="urn:myExtension" exclude-result-prefixes="msxsl myext"&gt; &lt;xsl:output method="xml" indent="yes"/&gt; &lt;msxsl:script language="C#" implements-prefix="myext"&gt; &lt;![CDATA[ public int SecondsFromIsoDuration(string isoDuration) { // parse and convert here; } ]]&gt; &lt;/msxsl:script&gt; &lt;xsl:template match="@* | node()"&gt; &lt;root durationInSeconds="{myext:SecondsFromIsoDuration(@duration)}" /&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>The script function will be compiled at runtime to a temporary assembly and then executed. However, be aware to cache your XSLT because every XSLT-compilation will create a new assembly which is only unloaded when your application exits.</p>