提取日期字符串并确定哪个更早

时间:2012-10-16 02:31:16

标签: c++ regex boost boost-date-time

我正在研究一个给出字符串的简单NLP项目,各种参数将被确定。

给出以下输入:

07122012 12102012

代码:

string REGEX_DATE = "((\\d{2})/(\\d{2})/(\\d{4}))";

regex expressionFormat(REGEX_DATE);

sregex_token_iterator i(input.begin(), input.end(), expressionFormat, 1);

sregex_token_iterator j;

while(i != j)
{
result = *i++;
}

存储和比较结果的最佳方法是什么? (确定哪个日期更早)

1 个答案:

答案 0 :(得分:1)

最好的方法是构建和比较日期而不是字符串或数字:

#include <iostream>
#include <string>
#include <boost/date_time.hpp>

int main()
{
    std::string input = "07122012 12102012";

    std::istringstream buf(input);
    buf.imbue(std::locale(buf.getloc(),
              new boost::posix_time::time_input_facet("%d%m%Y")));

    boost::posix_time::ptime d1, d2;
    buf >> d1 >> d2;

    if(d1 < d2)
        std::cout << d1 << " before " << d2 << '\n';
    else
        std::cout << d2 << " before " << d1 << '\n';
}

在线演示:http://liveworkspace.org/code/989ba879e622aed7866e7dba2d0f02ee