$Sir DateChk: Difference between revisions
m (more conversion cleanup) |
m (fix incorrect reference) |
||
Line 9: | Line 9: | ||
matches the provided format, otherwise the value 0 is returned. </p> | matches the provided format, otherwise the value 0 is returned. </p> | ||
<p> | <p> | ||
The <var>$Sir_DateChk</var> function is similar to the <var>$ | The <var>$Sir_DateChk</var> function is similar to the <var>[[$DateChk]]</var> standard SOUL function. | ||
However, the <var>$DateChk</var> function does not support the specification of a <var>[[ | However, the <var>$DateChk</var> function does not support the specification of a <var>[[Datetime string formats#Using CENTSPAN|CENTSPAN]]</var> argument. </p> | ||
===Syntax=== | ===Syntax=== | ||
<p class="syntax"><span class="term">%tst</span> = $Sir_DateChk(<span class="term">fmt</span>, <span class="term">dat</span>, [<span class="term">span</span>], <span class="term">errctl</span>) | <p class="syntax"><span class="term">%tst</span> = $Sir_DateChk(<span class="term">fmt</span>, <span class="term">dat</span>, [<span class="term">span</span>], [<span class="term">errctl</span>]) | ||
</p> | </p> | ||
Where: | Where: |
Revision as of 20:47, 23 September 2015
Check if datetime matches format
Note: This $function require the Sir2000 User Language Tools product.
The $Sir_DateChk function expects a datetime format string and a datetime value string. It accepts an optional CENTSPAN value, and an optional error control string. $Sir_DateChk returns the value 1 if the datetime value is valid and matches the provided format, otherwise the value 0 is returned.
The $Sir_DateChk function is similar to the $DateChk standard SOUL function. However, the $DateChk function does not support the specification of a CENTSPAN argument.
Syntax
%tst = $Sir_DateChk(fmt, dat, [span], [errctl])
Where:
%tst | Set to 1 if dat matches fmt; otherwise set to 0. |
---|---|
fmt | Datetime format string. Refer to Datetime string formats for an explanation of valid datetime formats and valid dates. Strict matching is used for fmt. |
dat | Datetime string. |
span | Optional CENTSPAN value, default is -50. Refer to Using CENTSPAN. |
errctl | Optional error control string, refer to Datetime error handling. |
The following fragment prints the string Bad
, since February
cannot have thirty days.
Note that the request is not cancelled, even though an optional error control
string was provided:
%x = $sir_datechk('DAY Month, YYYY', - '30 February, 1997',,'CANCEL') if %x = 1 then print 'Good' else print 'Bad' end if
Error conditions
$Sir_DateChk returns a value of 0 if any of the following errors are detected:
- fmt is not a valid datetime format.
- dat is not a valid date, or does not match fmt,
or is outside of range permitted for fmt.
Note that these cases are always treated as if an error control string
of
IGNORE
had been specified. - span is not a valid CENTSPAN value.
For more information about error handling, see the APPDATE command and see Sir_Date_Err.