|
||||||||||
|
|
||||||||||
| Other Library Functions | ||||||||||
| function | format-ymdhms |
Available in:
Professional Enterprise |
|
Library: omdate - date and time functions
Include: omdate.xin |
Return type: String Returns: The specified date in the indicated format. |
define stream function format-ymdhms value stream date-format
with-date value stream ymdhms
This function takes a date/time in "YYYYMMDDhhmmss+ZHZM" format and returns it formatted as for the OmniMark date operator.
Arguments:
date format modifiers (such as "=Y/=M/=D", etc)
Example:
; Format the date with day and month written out
include "omdate.xin"
process
output format-ymdhms "Now == =W, =xD =n =xY, =h:=m:=s =a.m. =t%n"
with-date now-as-ymdhms
; Result of this code run on Valentine's Day, 2001:
; Now = Wednesday, 14 February 2001, 04:06:21 p.m. -0500
| ---- |