$Sir_DateFmt

From m204wiki
Revision as of 17:36, 28 January 2011 by 198.242.244.47 (talk) (Created page with "{{DISPLAYTITLE:$Sir_DateFmt}} <span class="pageSubtitle"><section begin="desc" />Validate datetime format<section end="desc" /></span> <p class="warning">Most Sirius $functions ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<section begin="desc" />Validate datetime format<section end="desc" />

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Sir_DateFmt function is to be entered.


The $Sir_DateFmt function expects a datetime format string and returns the value 1 if the datetime format is valid, else the value 0.

Syntax

<section begin="syntax" /> %tst = $Sir_DateFmt(fmt) <section end="syntax" />

$Sir_DateFmt Function

where

fmt datetime format string. Refer to for an explanation of valid datetime format strings.
%tst set to 1 if fmt is a valid datetime format string, otherwise set to 0.


For example, the following fragment prints the string Good:

%X = $Sir_DateFmt('CYYDDDHHMISSXXX') IF %X = 1 THEN PRINT 'Good' ELSE PRINT 'Bad' END IF


This $function has no error conditions.

Products authorizing $Sir_DateFmt