2

我需要将日期时间字符串解析2012-12-21 12:10:35time_t使用boost::spirit. 这是我的代码片段:

tc_     =   lexeme[int_[phx::ref(tm_.tm_year)=(_1-1900)]>>'-'
                     >>int_[phx::ref(tm_.tm_mon)=(_1-1)]>>'-'
                    >>int_[phx::ref(tm_.tm_mday)=_1]>>+space
                    >>int_[phx::ref(tm_.tm_hour)=_1]>>':'
                     >>int_[phx::ref(tm_.tm_min)=_1]>>':'
                    >>int_[phx::ref(tm_.tm_sec)=_1]]    [_val = (long)mktime(&tm_)];

其中tc_qi类型的规则:qi::rule<Iterator, long(), Skipper>tm_是类型的成员变量struct tm

代码编译,但不起作用。似乎mktime()根本没有被调用。我究竟做错了什么?

4

1 回答 1

0

你可以在 c++ 11 vi 正则表达式中做到这一点。如果您的编译器足够新,这将是可移植的和标准的。

#include <iostream>
#include <string>
#include <regex>
using namespace std;

int main()
{
    std::regex txt_regex("([0-9]{4})[-]([0-9]{2})[-]([0-9]{2})[ ]([0-9]{2})([:])([0-9]{2})([:])([0-9]{2})");//  
    string strTmp;
    strTmp="2010-12-15 15:25:46";
    std::smatch match;
    std::regex_search( strTmp, match, txt_regex );

    if(regex_match(strTmp,txt_regex))
         cout<<"Ok"<<endl;
    else
    {
    cout<<"Invalid input"<<endl;
    return 0;
    }
    if ( match.empty() )
    {
         std::cout << "...no more matches" << std::endl;
         return 0;
    }
    for ( auto x : match )
    {
        std::cout << "found: " << x << std::endl;
    }
    string str = match.suffix().str();
    cout <<str <<std::endl;
    return 0; 
}

有了这个,您可以显示要显示的字符串的不同部分,然后填充结构。

希望它有所帮助并像往常一样开放评论(如果有不清楚或不完整的地方)。

于 2013-06-16T23:01:12.530 回答