There's no format code for zone offset?
https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
There is a long discussion on this problem here.
Here's a recursive blocks only approach.
You have to divide milliseconds by 1000 and round on your way into the function.
hh_mm_ss.aia (2.4 KB)
1 Like
Thanks for this idea...
But it still seemed to me a complex way, to break a temporal expression in parts and mathematically deal with these fractions until it reaches the goal.
@>-->---
Ahh! This was simple and elegant!
Convert mm:ss in HH:mm:ss and resolve with the TFormat extension itself
This is the answer I were looking for!
Thank you
PS: In the next version of the extension you could add a lapse multiplier ^^
@>-->---