IT이야기

문자열에서 날짜/시간을 구문 분석하는 방법은 무엇입니까?

cyworld 2021. 9. 21. 20:01
반응형

문자열에서 날짜/시간을 구문 분석하는 방법은 무엇입니까?


입력 : 날짜 및 선택적 시간이 있는 문자열. 다른 표현이 좋지만 필요합니다. 문자열은 사용자가 제공하며 형식이 잘못될 수 있습니다. 예:

  • "2004-03-21 12:45:33" (저는 이것을 기본 레이아웃으로 간주합니다)
  • "2004/03/21 12:45:33" (옵션 레이아웃)
  • "23.09.2004 04:12:21" (독일어 형식, 선택 사항)
  • "2003-02-11" (시간이 없을 수 있음)

필요한 출력 : Epoch 이후 초(1970/01/01 00:00:00) 또는 기타 고정 소수점.

보너스 : 또한 로컬 시스템 시간의 UTC 오프셋을 읽는 것이 좋습니다.

입력은 해당 시스템의 현지 시간으로 간주됩니다. 출력은 UTC여야 합니다. 시스템은 Linux 전용입니다(Debian Lenny 및 Ubuntu 필요).

을(를) 사용하려고 했지만 boost/date_time문서를 둘러싸고 머리를 감쌀 수 없음을 인정해야 합니다. 다음은 시스템 로컬 시간에서 UTC로 필요한 변환 없이 작동합니다.

std::string date = "2000-01-01";
boost::posix_time::ptime ptimedate = boost::posix_time::time_from_string(date);
ptimedate += boost::posix_time::hours(Hardcoded_UTC_Offset);// where to get from?
struct tm = boost::posix_time::to_tm(ptimedate);
int64_t ticks = mktime(&mTmTime);

boost::date_time필요한 UTC 오프셋을 제공할 수 있다고 생각 하지만 방법을 모르겠습니다.


부스트에서 한 자리 월 입력의 형식을 지정하는 방법을 모르지만 두 자리 편집 후에는 할 수 있습니다.

#include <iostream>
#include <boost/date_time.hpp>
namespace bt = boost::posix_time;
const std::locale formats[] = {
std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%d %H:%M:%S")),
std::locale(std::locale::classic(),new bt::time_input_facet("%Y/%m/%d %H:%M:%S")),
std::locale(std::locale::classic(),new bt::time_input_facet("%d.%m.%Y %H:%M:%S")),
std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%d"))};
const size_t formats_n = sizeof(formats)/sizeof(formats[0]);

std::time_t pt_to_time_t(const bt::ptime& pt)
{
    bt::ptime timet_start(boost::gregorian::date(1970,1,1));
    bt::time_duration diff = pt - timet_start;
    return diff.ticks()/bt::time_duration::rep_type::ticks_per_second;

}
void seconds_from_epoch(const std::string& s)
{
    bt::ptime pt;
    for(size_t i=0; i<formats_n; ++i)
    {
        std::istringstream is(s);
        is.imbue(formats[i]);
        is >> pt;
        if(pt != bt::ptime()) break;
    }
    std::cout << " ptime is " << pt << '\n';
    std::cout << " seconds from epoch are " << pt_to_time_t(pt) << '\n';
}
int main()
{
    seconds_from_epoch("2004-03-21 12:45:33");
    seconds_from_epoch("2004/03/21 12:45:33");
    seconds_from_epoch("23.09.2004 04:12:21");
    seconds_from_epoch("2003-02-11");
}

초 단위 출력은 날짜가 UTC라고 가정합니다.

~ $ ./test | head -2
ptime is 2004-Mar-21 12:45:33
seconds from epoch are 1079873133
~ $ date -d @1079873133
Sun Mar 21 07:45:33 EST 2004

입력이 현재 시간대에 있다고 가정하면 boost::posix_time::c_time::localtime()from #include <boost/date_time/c_time.hpp>사용 하여 이 변환을 완료할 수 있지만 다소 일관성이 없습니다. 예를 들어, 결과는 서머타임이 종료되는 오늘과 다음 달 사이에 다를 것입니다.


boost::gregorian 더 이상 작업을 수행하지 않고도 필요한 몇 가지 항목이 있습니다.

using namespace boost::gregorian;
{
  // The following date is in ISO 8601 extended format (CCYY-MM-DD)
  std::string s("2000-01-01");
  date d(from_simple_string(s));
  std::cout << to_simple_string(d) << std::endl;
}

여기에 UTC 오프셋을 사용하는 방법에 대한 예가 boost::posix_time 있습니다 .

당신은 사용하여 사용자 정의 입력 문자열 형식에서 날짜와 시간의 생성을 제공 할 수 있습니다 date_input_facettime_input_facet. 이 페이지에는 진행 하는 데 도움 되는 I/O 자습서가 있습니다.


c 스타일이 허용되는 경우: strptime ()을 사용하는 것이 좋습니다. 형식을 지정할 수 있고 로케일을 고려할 수 있기 때문입니다.

tm brokenTime;
strptime(str.c_str(), "%Y-%m-%d %T", &brokenTime);
time_t sinceEpoch = timegm(brokenTime);

다른 레이아웃은 반환 값으로 확인해야 합니다(가능한 경우). 시간대는 시스템 시계를 확인하여 추가해야 합니다(localtime_r() with time(), tm_zone)


가장 간단하고 이식 가능한 솔루션은 다음을 사용하는 것입니다 scanf.

int year, month, day, hour, minute, second = 0;
int r = 0;

r = scanf ("%d-%d-%d %d:%d:%d", &year, &month, &day,
           &hour, &minute, &second);
if (r == 6) 
{
  printf ("%d-%d-%d %d:%d:%d\n", year, month, day, hour, minute,
          second);
}
else 
{
    r = scanf ("%d/%d/%d %d:%d:%d", &year, &month, &day,
           &hour, &minute, &second);
    // and so on ...

Initialize a struct tm with the int values and pass it to mktime to get a calendar time as time_t. For timezone conversions, please see information on gmtime.

ReferenceURL : https://stackoverflow.com/questions/3786201/how-to-parse-date-time-from-string

반응형