StringToMilliseconds (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:String:StringToMilliseconds subtitle}}
{{Template:String:StringToMilliseconds subtitle}}
 
<var>StringToMilliseconds</var> is an [[Intrinsic classes|intrinsic]] function to convert a [[Datetime_string_formats|date/time string]] to milliseconds since 1900.
<var>StringToMilliseconds</var> is an <var>[[Intrinsic classes|intrinsic]]</var> function to convert a [[Datetime_string_formats|date/time string]] to milliseconds since 1900.


==Syntax==
==Syntax==
Line 7: Line 6:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%milliseconds</th>
<tr><th nowrap>%milliseconds</th>
<td>The float variable to receive the computed time since 1900.</td></tr>
<td>The float variable to receive the computed time since 1900.</td></tr>
<tr><th>string</th>
<tr><th>string</th>
Line 27: Line 26:
==See also==
==See also==
<ul>
<ul>
<li>Related intrinsic methods:
<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><var>[[MillisecondsToString (Float_function)|MillisecondsToString]]</var>
<li><var>[[SecondsToString (Float_function)|SecondsToString]]</var>
<li><var>[[SecondsToString (Float_function)|SecondsToString]]</var>
<li><var>[[StringToDays (String_function)|StringToDays]]</var>
<li><var>[[StringToDays (String_function)|StringToDays]]</var>

Latest revision as of 22:14, 3 September 2015

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

[Introduced in Sirius Mods 7.8]

StringToMilliseconds is an intrinsic function to convert a date/time string to milliseconds since 1900.

Syntax

%milliseconds = string:StringToMilliseconds( format, [[CentSpan=] number]) Throws InvalidDateString

Syntax terms

%milliseconds The float variable to receive the computed time since 1900.
string The input date/time string.
format The format of the date/time string.
CentSpan See the CENTSPAN parameter. In Sirius Mods 7.9 and later this is a name allowed parameter. For versions prior to 7.9, it is a positional parameter.

Examples

This statement uses StringToMilliseconds and MillisecondsToString to convert a value in YYYYMMDDHHMISSXXX format to the Month DAY, YYYY HH:MI:SS.XXX format:

printText {~='20110520173648965':stringToMilliseconds('YYYYMMDDHHMISSXXX'):millisecondsToString('Month DAY, YYYY HH:MI:SS.XXX')}

The result is:

'20110520173648965':stringToMilliseconds('YYYYMMDDHHMISSXXX'):millisecondsToString('Month DAY, YYYY HH:MI:SS.XXX') =May 20, 2011 17:36:48.965

See also