parse

メソッド Type method
Date.parse(日付文字列) Format Date.parse (string date)
Commentary
1970年1月1日午前0時からのミリ秒を返します。 1 January 1970 at returns 0 milliseconds from the time. 日付文字列には「Mon Oct 03 2005 17:32:55」という文字列を指定します。 The date string "Mon Oct 03 2005 17:32:55" to specify the string. 2005/10/3のような形式の文字列を指定すると正しく処理されません。 2005/10/3 not handled correctly and to specify a string formatted as.
サンプルコード Sample code
n = Date.parse("Mon Oct 03 2005 17:32:55"); n = Date.parse ( "Mon Oct 03 2005 17:32:55");
outputs[0] = n.toString(); outputs [0] = n.toString ();