How do I convert an ISO 8601 duration to seconds using XSLT 1.0 - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T18:05:02Zhttp://stackoverflow.com/feeds/question/627212http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/627212/how-do-i-convert-an-iso-8601-duration-to-seconds-using-xslt-1-00How do I convert an ISO 8601 duration to seconds using XSLT 1.0Kevin Gale2009-03-09T17:26:00Z2009-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#6272862Answer by vartec for How do I convert an ISO 8601 duration to seconds using XSLT 1.0vartec2009-03-09T17:44:36Z2009-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#6273181Answer by divo for How do I convert an ISO 8601 duration to seconds using XSLT 1.0divo2009-03-09T17:51:21Z2009-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><?xml version="1.0" encoding="utf-8"?>
<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">
<xsl:output method="xml" indent="yes"/>
<msxsl:script language="C#" implements-prefix="myext">
<![CDATA[
public int SecondsFromIsoDuration(string isoDuration)
{
// parse and convert here;
}
]]>
</msxsl:script>
<xsl:template match="@* | node()">
<root durationInSeconds="{myext:SecondsFromIsoDuration(@duration)}" />
</xsl:template>
</xsl:stylesheet>
</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>