6

「2011-10-20T09:30:10-05:00」という文字列があります

boost::date_time ライブラリで解析する方法を誰かが知っていますか?

4

2 に答える 2

7

わかりました、私は答えを見つけました

コード (VS 用)

文字列を local_date_time に変換しますが、私にとっては許容範囲です。

#pragma warning(push)
#pragma warning(disable:4244)
#pragma warning(disable:4245)
#include <boost/date_time/local_time/local_time.hpp>
#pragma warning(pop)

#include <iostream>
#include <string>

int main() 
{
    using namespace std;
    using namespace boost::local_time;

    istringstream ss("2011-10-20T09:30:10-05:00");
    ss.exceptions(ios_base::failbit);
    local_time_input_facet* facet = new local_time_input_facet("%Y-%m-%dT%H:%M:%S%ZP");
    ss.imbue(locale(ss.getloc(), facet));

    local_date_time ldt(not_a_date_time);
    ss >> ldt; // do the parse

    std::cout <<
        ldt.to_string() <<
        "\noffset is: " <<
        to_simple_string(ldt.zone()->base_utc_offset()) <<
        std::endl;
}

多分誰かがそれを必要とするでしょう

于 2011-12-09T22:17:17.183 に答える
2
const char *s = "2011-10-20T09:30:10-05:00";

boost::posix_time::ptime t_local(
    boost::gregorian::from_string(std::string(s, s + 10)),
    boost::posix_time::duration_from_string(std::string(s + 11, s + 19))
);

boost::posix_time::ptime t(
    t_local - boost::posix_time::duration_from_string(std::string(s + 19, s + 25))
);

現在tは UTC 時間でt_localあり、現地時間です。

于 2011-12-09T20:48:54.570 に答える