関数timeStr2time3 マニュアル

(The documentation of function timeStr2time3)

Last Update: 2024/7/1


◆機能・用途(Purpose)

日付・時刻を表す文字列をstruct humanTime型構造体に変換する。 文字列を「年,月,日,時,分,秒」で与えるバージョン。
Convert strings that represent date and time to a struct humanTime-type structure; the string for the date and time is given in “year,month,day,hour,min,sec” format.


◆形式(Format)

#include <mytime.h>
inline struct humanTime timeStr2time3(const char ∗dateTimeStr)


◆引数(Arguments)

dateTimeStr 日付を表す文字列(「年,月,日,時,分,秒」形式)。 「秒」は実数値として与えることができる。 「月」「日」「時」「分」「秒」の整数部分は 1桁の場合は頭に0を付けても付けなくても良い。
A string that represents a date and time (“year,month,day,hour,min,sec” format). The second can be a real number. If the month, day, hour, minute, or the integer part of the second is one digit, it is arbitrary to append 0 or not at the head.


◆戻り値(Return value)

引数dateTimeStrに基づく日付・時刻を表す構造体。
A structure that represents a date and time from the argument dateTimeStr.


◆使用例(Example)

struct humanTime dateTime_a =timeStr2time3("2011,02,28,11,20,01.234");
struct humanTime dateTime_b =timeStr2time3("2011,2,28,11,20,1.234");