Extracting strings of dates and determining which is earlier

112 Views Asked by At

I'm working on a simple NLP project which given a string, the various parameters would be determined.

Given the following input:

07122012 12102012

Code:

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++;
}

What would be the best way to store and compare the results? (Determine which date is earlier)

1

There are 1 best solutions below

2
On

The best way would be to construct and compare the dates rather than strings or numbers:

#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';
}

online demo: http://liveworkspace.org/code/989ba879e622aed7866e7dba2d0f02ee