StringToSeconds (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 13: Line 13:
<tr><th>format</th>
<tr><th>format</th>
<td>The format of the date/time string.</td></tr>
<td>The format of the date/time string.</td></tr>
<tr><th>CentSpan</th>
<tr><th><var>CentSpan</var></th>
<td>See [[CENTSPAN_parameter]]. In <var class="product">Sirius Mods</var> 7.9 and later this is a NameAllowed parameter. Before that it is a positional parameter.</td/tr>
<td>See [[CENTSPAN_parameter]]. In <var class="product">Sirius Mods</var> 7.9 and later this is a <var>[[Notation conventions for methods#Named parameters|NameAllowed]]</var> parameter. For versions prior to 7.9, it is a positional parameter.</td/tr>
</table>
</table>


Line 23: Line 23:


==See also==
==See also==
[[StringToMilliseconds_(String_function)]]
<ul>
<li><var>[[StringToDays (String_function)|StringToDays]]</var>


[[StringToDays_(String_function)]]
<li><var>[[StringToMilliseconds (String_function)|StringToMilliseconds]]</var>
</ul>


{{Template:String:StringToSeconds footer}}
{{Template:String:StringToSeconds footer}}

Revision as of 15:56, 23 May 2011

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

[Introduced in Sirius Mods 7.8]


StringToSeconds is an intrinsic function to convert a date/time string to seconds since 1900.

Syntax

%seconds = string:StringToSeconds( format, [[CentSpan=] number]) Throws InvalidDateString

Syntax terms

%seconds 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 CENTSPAN_parameter. In Sirius Mods 7.9 and later this is a NameAllowed parameter. For versions prior to 7.9, it is a positional parameter.

Usage notes

Examples

See also