From Clomosy Docs

The TimeToStr function converts a TclDateTime value S into a formatted time string. The time is formatted using the LongTimeFormat value, which in turn uses the TimeSeparator value.

Example

 var
   myTime : TclDateTime;
 
 {
   myTime = StrToTime('15:22:35');
   ShowMessage('myTime = '+TimeToStr(myTime));
 }

Output:

See Also