TimeStringConvert (String function): Difference between revisions
Jump to navigation
Jump to search
m (→Syntax terms) |
No edit summary |
||
Line 1: | Line 1: | ||
{{Template:String:TimeStringConvert subtitle}} | {{Template:String:TimeStringConvert subtitle}} | ||
==Syntax== | ==Syntax== | ||
{{Template:String:TimeStringConvert syntax}} | {{Template:String:TimeStringConvert syntax}} |
Latest revision as of 22:34, 3 September 2015
Convert date/time string from one format to another (String class)
[Introduced in Sirius Mods 7.9]
Syntax
%outString = string:TimeStringConvert( inputFormat, outputFormat, - [[CentSpan=] number]) Throws InvalidDateString
Syntax terms
%outString | This string is the method object, string, converted to the format in outputFormat. |
---|---|
string | A datetime string. |
inputFormat | The datetime format of the method object string. |
outputFormat | A string that specifies the datetime format to which the method object is to be converted. |
CentSpan | This name allowed parameter is the CENTSPAN value used, if the inputFormat has a two-digit year. The default is specified by the CENTSPAN system parameter. |
Examples
- This statement converts a value in
YYYYMMDDHHMISSXXX
format to theMonth DAY, YYYY HH:MI:SS.XXX
format:printText {~='20110520173648965':timeStringConvert('YYYYMMDDHHMISSXXX', 'Month DAY, YYYY HH:MI:SS.XXX')}
The result is:
'20110520173648965':timeStringConvert('YYYYMMDDHHMISSXXX', 'Month DAY, YYYY HH:MI:SS.XXX')=May 20, 2011 17:36:48.965
- This statement converts a value in
MM/DD/YY
format to theMonth DAY, YYYY
format:printText {~='12/22/11':timeStringConvert('MM/DD/YY', 'Month DAY, YYYY', centspan=1910)}
The result is:
'12/22/11':timeStringConvert('MM/DD/YY', 'Month DAY, YYYY', centspan=1910)=December 22, 1911
See also
- Related intrinsic methods (provide conversion from one form of date representation to another):
- Related System methods: