Syntax
UTCTimeDescription
Return the current Coordinated Universal Time (UTC) time in the format hh:mm:ss. For example: "18:01:33".Example
t = UTCTime
hr = Substring t 1 2
min = SubString t 4 2
sec = Substring t 7 2The above assigns the fields of the time string returned by UTCTime to individual variables.