$Sir DateChg: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (misc formatting)
m (fix incorrect reference)
Line 6: Line 6:
<p>The <var>$Sir_DateChg</var> function expects a datetime format string,
<p>The <var>$Sir_DateChg</var> function expects a datetime format string,
a datetime value string, and a number of days.
a datetime value string, and a number of days.
It accepts an optional <var>CENTSPAN</var> value and an optional
It accepts an optional <var>[[Datetime string formats#Using CENTSPAN|CENTSPAN]]</var> value and an optional
error control string.
error control string.
It returns the datetime string obtained by adding the indicated number
It returns the datetime string obtained by adding the indicated number
Line 13: Line 13:
<p>
<p>
The <var>$Sir_DateChg</var> function is similar to the <var>[[$DateChg]]</var> function.
The <var>$Sir_DateChg</var> function is similar to the <var>[[$DateChg]]</var> function.
However, the <var>$DateChg</var> function does not support the specification of a <var>[[CENTSPLT parameter|CENTSPLT]]</var> or a
However, the <var>$DateChg</var> function does not support the specification of a <var>CENTSPAN</var> argument. </p>
<var>[[DEFCENT parameter|DEFCENT]]</var> argument. </p>


==Syntax==
==Syntax==

Revision as of 21:05, 23 September 2015

Add some days to datetime

Note: This $function require the Sir2000 User Language Tools product.

The $Sir_DateChg function expects a datetime format string, a datetime value string, and a number of days. It accepts an optional CENTSPAN value and an optional error control string. It returns the datetime string obtained by adding the indicated number of days to the input datetime; the return datetime string is in the same format as the input datetime string.

The $Sir_DateChg function is similar to the $DateChg function. However, the $DateChg function does not support the specification of a CENTSPAN argument.

Syntax

%odat = $Sir_DateChg(fmt, dat, days, [span], errctl)

Where:

%odat Set to dat plus days 24-hour periods, unless an error is detected.
fmt Datetime format string, describes dat and %odat. Refer to Datetime string formats for an explanation of valid datetime formats and valid datetime values. Strict matching is used for fmt.
dat Datetime value string.
days Number of days to add to dat.
span Optional CENTSPAN value, default is -50. Refer to Using CENTSPAN.
errctl Optional error control string. Refer to Datetime error handling.

Example

The following fragment prints the date one week after the run date:

%x = $sir_date('DAY Month, YYYY') Print $sir_datechg('DAY Month, YYYY', %x, 7)

Error conditions

$Sir_DateChg returns a string composed of all asterisks (*), whose length is the shorter of the length of the input date format string or 32, in the following error cases:

  • fmt is not a valid datetime format.
  • date does not match fmt or result date out of range.
  • days is omitted.
  • span contains an invalid CENTSPAN specification.

For more information about error handling, see the APPDATE command, and see Sir_Date_Err.