Function EN Version 1.90

@TextToTime

List Misc Text TimeDate

Syntax

@TextToTime(TEXT1);
@TextToTime(TEXTLIST1);
@TextToTime(TEXT1;TEXTOPTIONS);
@TextToTime(TEXTLIST1;TEXTOPTIONS);

Description

Converts the text TEXT/TEXTLIST TEXT1/TEXTLIST1 into a time-date value TD/TDLIST.

TEXT TEXTOPTIONS:
If "*" is specified here, the texts are expected in TD hex dump format, for example "C1255DF0:004B73DC" (corresponding to "14.09.1992 14:44:08").

NOTE:
@TextToTime
in the Engine differs slightly from the Notes @Function @TextToTime!

Do not use "/" or "-" as separators between individual date components; use a period instead.

Example: @TextToTime(TEXT1)

TEXT1:="30.09.93 09:30";
@TextToTime(TEXT1);

returns [30.09.93 09:30]

Example: @TextToTime(TEXTLIST1)

TEXTLIST1:="29.09.93":"30.09.93 09:30":"01.10.93 10:15:45";
@TextToTime(TEXTLIST1);

returns [29.09.93]:[30.09.93 09:30:00]:[01.10.93 10:15:45]

Example: @TextToTime(TEXT1;"*")

TEXT1:="C1255DF0:004B73DC";
@TextToTime(TEXT1;"*");

returns [14.09.92 14:44:08]

Note : This text was machine-translated and may contain inaccuracies.