I am using xsl version 2.0
I have a time field that I need to add 1 to. I am getting a formatted number from the the below node:
<xsl:value-of select="Master/End/Timecode"/>
<xsl:text>
The data in "Master/End/Timecode" looks like 01:00:00:00 basically time-- hours :minutes :seconds :frames the frames are a count from oo to 23. How to add 1 to the frames and have the seconds and minuts increment up if frames=23.
Example 01:00:59:23 plus 1 would give a result of 01:01:00:00. Any ideas