datetime StrToTime(string value)
Converts string in the format “yyyy.mm.dd hh:mi” to datetime type (the amount of seconds that have passed since 1 Jan., 1970).
フォーマットが “yyyy.mm.dd hh:mi” の文字列を datetime 型に変換します。(1970年1月1日から経過した秒単位の量)
Parameters:
パラメータ:
1 2 | <b>value</b> - String value of date/time format as "yyyy.mm.dd hh:mi". 日付/時刻の値のフォーマットを "yyyy.mm.dd hh:mi" とした文字列。 |
Sample:
サンプル:
1 2 3 4 | datetime var1; var1=StrToTime("2003.8.12 17:35"); var1=StrToTime("17:35"); // returns the current date with the given time var1=StrToTime("2003.8.12"); // returns the date with the midnight time of "00:00" |