*! 1.0.0 CFB 29 Sep 2002 * 1.1.0 NJC 7 December 2000 _gbom * 1.0.0 NJC 12 July 2000 program define _gtod version 6 gettoken type 0 : 0 gettoken g 0 : 0 gettoken eqs 0 : 0 /* "=" */ gettoken paren 0 : 0, parse("() ") /* "(" */ gettoken time 0 : 0, parse("() ") gettoken paren 0 : 0, parse("(), ") /* ")" */ if `"`paren'"' != ")" { error 198 } syntax [if] [in] [ , Format(str) ] quietly { tempvar touse hh mm ss mark `touse' `if' `in' capture assert `time' >= 0 & `time' < 86400 if `touse' if _rc { di in r "`time' contains non time-of-day value(s)" exit 198 } capture assert `time' == int(`time') if `touse' if _rc { di in r "`time' contains non-integer value(s)" exit 410 } gen int `hh' = int(`time'/3600) if `touse' gen int `mm' = int((`time' - `hh'*3600)/60) if `touse' gen int `ss' = int(`time' - `hh'*3600 - `mm'*60) if `touse' gen str8 `g' = string(`hh',"%02.0f") + ":" + string(`mm',"%02.0f") + /* */ ":" + string(`ss',"%02.0f") if `touse' if "`format'" != "" { capture format `g' `format' if _rc { noi di in bl "`format' invalid format" } } } end