MillisecondsToString (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Oops never mind)
m (minor formatting)
 
Line 5: Line 5:
==Syntax==
==Syntax==
{{Template:Float:MillisecondsToString syntax}}
{{Template:Float:MillisecondsToString syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th><td>A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the <var>MillisecondsToString</var> method.</td></tr>
<tr><th>%string</th>
<tr><th>float</th><td>A <var>Float</var> value representing milliseconds since 1900. Range -4638816000000 - 255611289599999.</td></tr>
<td>A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the <var>MillisecondsToString</var> method.</td></tr>
<tr><th>format</th><td>A valid [[Datetime_string_formats|date/time string format]].</td></tr>
 
<tr><th>float</th>
<td>A <var>Float</var> value representing milliseconds since 1900. It must be in the range -4638816000000 to 255611289599999.</td></tr>
 
<tr><th>format</th>
<td>A valid [[Datetime_string_formats|date/time string format]].</td></tr>
</table>
</table>


Line 19: Line 25:
<li>Related intrinsic methods (provide conversion from one form of date representation to another):
<li>Related intrinsic methods (provide conversion from one form of date representation to another):
<ul>
<ul>
<li><var>[[DaysToString (Float_function)|DaysToString]]</var>
<li><var>[[DaysToString (Float_function)|DaysToString]]</var> </li>
<li><var>[[SecondsToString (Float_function)|SecondsToString]]</var>
 
<li><var>[[StringToDays (String_function)|StringToDays]]</var>
<li><var>[[SecondsToString (Float_function)|SecondsToString]]</var> </li>
<li><var>[[StringToMilliseconds (String_function)|StringToMilliseconds]]</var>
 
<li><var>[[StringToSeconds (String_function)|StringToSeconds]]</var>
<li><var>[[StringToDays (String_function)|StringToDays]]</var> </li>
<li><var>[[TimeStringConvert (String_function)|TimeStringConvert]]</var>
 
</ul>
<li><var>[[StringToMilliseconds (String_function)|StringToMilliseconds]]</var> </li>
 
<li><var>[[StringToSeconds (String_function)|StringToSeconds]]</var> </li>
 
<li><var>[[TimeStringConvert (String_function)|TimeStringConvert]]</var> </li>
</ul> </li>
 
<li>Related <var>System</var> methods:
<li>Related <var>System</var> methods:
<ul>
<ul>
<li><var>[[CurrentTimeMilliseconds (System function)|CurrentTimeMilliseconds]]</var>
<li><var>[[CurrentTimeMilliseconds (System function)|CurrentTimeMilliseconds]]</var> </li>
<li><var>[[CurrentTimeSeconds (System function)|CurrentTimeSeconds]]</var>
 
<li><var>[[CurrentTimeDays (System function)|CurrentTimeDays ]]</var>
<li><var>[[CurrentTimeSeconds (System function)|CurrentTimeSeconds]]</var> </li>
<li><var>[[CurrentTimeString (System function)|CurrentTimeString ]]</var>
 
</ul>
<li><var>[[CurrentTimeDays (System function)|CurrentTimeDays ]]</var> </li>
 
<li><var>[[CurrentTimeString (System function)|CurrentTimeString ]]</var> </li>
</ul> </li>
</ul>
</ul>
{{Template:Float:MillisecondsToString footer}}
{{Template:Float:MillisecondsToString footer}}

Latest revision as of 16:42, 4 January 2016

Convert milliseconds since 1900 to string date/time (Float class)

[Introduced in Sirius Mods 7.8]


The MillisecondsToString intrinsic function operates on a Float value representing milliseconds since 1900 and returns a formatted string representing that date/time.

Syntax

%string = float:MillisecondsToString( format)

Syntax terms

%string A variable to receive the formatted date/time string result of the MillisecondsToString method.
float A Float value representing milliseconds since 1900. It must be in the range -4638816000000 to 255611289599999.
format A valid date/time string format.

Examples

See the StringToMilliseconds example.

See also