DADiSP Worksheet Functions > Function Categories > String Manipulation > STRTODMSEC
Returns a time string with milliseconds from a real number of seconds.
STRTODMSEC(seconds, precision)
seconds |
- |
A real. The number of seconds from which to calculate the time. The fractional part represents milliseconds. |
precision |
- |
Optional An integer. The number of digits to display after the decimal point in the time string. Defaults to 3. |
A string in hh:mm:ss.iii format.
strtodmsec(43200.101)
returns 12:00:00.101.
strtodmsec(43200.101, 5)
returns 12:00:00.10100.
A value of 0.0 seconds represents midnight. Since the total number of seconds in a day is 86400, strtodmsec(43200.000) is noon.
Use STRTOD to create a time string without milliseconds.
Use TODMSECSTR to convert a time tring with milliseconds into seconds.