0

我有一个指向字符串的指针, (char *) 作为输入。日期/时间如下所示:
Sat, 10 Apr 2010 19:30:00
我只对日期感兴趣,而不是时间。我用我想要的格式创建了一个“input_facet”:

boost::date_time::date_input_facet inFmt("%a %d %b %Y");

但我不知道该怎么办。最终我想从字符串创建一个日期对象。我很确定我在输入方面和格式方面走在正确的轨道上,但我不知道如何使用它。

谢谢。

4

1 回答 1

3

由于日期可能更改的时区差异,您不能总是忽略字符串的时间部分。

  • 解析您可以使用的日期/时间time_input_facet<>
  • 要从中提取日期部分,您可以使用.date()方法

例子:

// $ g++ *.cc -lboost_date_time && ./a.out 
#include <iostream>
#include <locale>
#include <sstream>

#include <boost/date_time/local_time/local_time.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
 
int main() {
  using namespace std;
  using boost::local_time::local_time_input_facet;
  using boost::posix_time::ptime;

  stringstream ss;
  ss <<                                     "Sat, 10 Apr 2010 19:30:00";
  ss.imbue(locale(locale::classic(),       
                  new local_time_input_facet("%a, %d %b %Y " "%H:%M:%S")));
  ptime t;
  ss.exceptions(ios::failbit);
  ss >> t;
  cout << "date: " << t.date() << '\n' ;
}

运行:

$ g++ *.cc -lboost_date_time && ./a.out 
date: 2010-Apr-10
于 2010-04-10T06:31:00.160 回答