⇤ ← Revision 1 as of 2022-09-24 20:17:00
Size: 693
Comment:
|
Size: 510
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 11: | Line 11: |
== Access == | == Usage == |
Line 15: | Line 15: |
---- == Usage == === Create Date Stamp === Use `c(current_date)`. which is the date as `"dd MMM yyyy"`. {{{ local ts = string(td(`c(current_date)'), "%tdCYND") }}} === Create Datetime Stamp === Use `c(current_time)`, which is the time as `"hh:mm:ss"`, in addition to `c(current_date)` as shown above. |
`c(current_date)` and `c(current_time)` are the system date and time, respectively. They are stored in the formats `"dd MMM yyyy"` and `"hh:mm:ss"`. |
Stata System Parameters
Stata exposes its configuration and internal parameters by the c() class.
Contents
Usage
Use creturn list to view all c() class variables.
c(current_date) and c(current_time) are the system date and time, respectively. They are stored in the formats "dd MMM yyyy" and "hh:mm:ss".
local ts = string(td(`c(current_date)'), "%tdCYND") + "_" + string(tc(`c(current_time)'), "%tcHM")