DADiSP Worksheet Functions > Function Categories > Time and Date Functions > TODMSECSTR
Returns the number of seconds to millisecond precision from a time string.
TODMSECSTR("timestr")
"timestr" |
- |
A string. The time in hh:mm:ss.iii format. |
A real, the total number of seconds represented by the time string. The fractional part represents milliseconds.
todmsecstr("12:00:00.101")
returns 43200.101.
A value of 0 seconds represents midnight. Since the total number of seconds in a day is 86400, todmsecstr("12:00:00.000") is 43200.0 or noon.
Use STRTODMSEC to convert seconds into a time string with milliseconds.