DaysToString (Float function): Difference between revisions
Jump to navigation
Jump to search
m (→Examples) |
m (→Examples) |
||
Line 22: | Line 22: | ||
printText {~='12/22/11':stringToDays('MM/DD/YY', centspan=1910):daysToString('Month DAY, YYYY')} </p> | printText {~='12/22/11':stringToDays('MM/DD/YY', centspan=1910):daysToString('Month DAY, YYYY')} </p> | ||
The | The results are: | ||
<p class="output">' | <p class="output">'12/22/11':stringToDays('MM/DD/YY', centspan=2000):daysToString('Month DAY, YYYY')=December 22, 2011 | ||
'12/22/11':stringToDays('MM/DD/YY', centspan=1910):daysToString('Month DAY, YYYY')=December 22, 1911 </p> | |||
<li>See also the <var>StringToDays</var> [[StringToDays (String function)#Examples|examples]]. | <li>See also the <var>StringToDays</var> [[StringToDays (String function)#Examples|examples]]. |
Revision as of 21:52, 3 April 2012
Convert days since 1900 to string date/time (Float class)
[Introduced in Sirius Mods 7.8]
The DaysToString intrinsic function operates on a Float value representing days since 1900 and returns a formatted string representing that date/time.
Syntax
%string = float:DaysToString( format)
Syntax terms
%string | A variable to receive the formatted date/time string result of the DaysToString method. |
---|---|
float | A Float value representing days since 1900. |
format | A valid date/time string format. |
Usage notes
- The DaysToString function is available as of Sirius Mods Version 7.8
Examples
- These statements use DaysToString and StringToDays to convert a value in
MM/DD/YY
format to theMonth DAY, YYYY
format. They also show the effect of the CentSpan parameter:printText {~='12/22/11':stringToDays('MM/DD/YY', centspan=2000):daysToString('Month DAY, YYYY')} printText {~='12/22/11':stringToDays('MM/DD/YY', centspan=1910):daysToString('Month DAY, YYYY')}
The results are:
'12/22/11':stringToDays('MM/DD/YY', centspan=2000):daysToString('Month DAY, YYYY')=December 22, 2011 '12/22/11':stringToDays('MM/DD/YY', centspan=1910):daysToString('Month DAY, YYYY')=December 22, 1911
- See also the StringToDays examples.
See also
- MillisecondsToString
- SecondsToString
- StringToDays
- StringToMilliseconds
- StringToSeconds
- TimeStringConvert