gpt4 book ai didi

C++ 日期解析实现

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:53:41 24 4
gpt4 key购买 nike

我目前正在努力将日期解析为程序。

格式可以是以下形式:

DDMMYYYY
DDMMYY
DDMM

DD/MM/YYYY
DD/MM/YY
DD/MM

除了日期之外,还会包含其他内容,例如:

19/12/12 0800 1000

这打破了我目前使用 boost::date_time 和 tokenizer 的实现。

对于这种情况,最好的建议是什么?我是否能够有一个更好的实现来允许以下内容:

19 Sep 12  // DD MMM YY

我的想法是将它们作为 DDMMYYYY 形式的字符串返回,以供程序的其他部分使用。这是最好的方法还是有更好的建议/替代方案?

*编辑:

决定采用 DDMMYYYY、DDMMYY 和 DDMM 不太可行。只能与带反斜杠的日期一起使用。

输出保持不变,字符串格式为:DDMMYYYY

最佳答案

使用 boost.regex,您可以执行以下操作:

#include <iostream>
#include <boost/regex.hpp>

using namespace std;
using namespace boost;

int main(int argc, char* argv[])
{
regex re("(\\d{2})\\/(\\d{2})(?:\\/?(\\d{2,4}))?");

cmatch m;

regex_search("1234 10/10/2012 4567", m, re);
cout << m.str(1) + m.str(2) + m.str(3) << endl;
regex_search("1234 10/10/12 4567", m, re);
cout << m.str(1) + m.str(2) + m.str(3) << endl;
regex_search("1234 10/10 4567", m, re);
cout << m.str(1) + m.str(2) << endl;

return 0;
}

像这样编译:

g++ --std=c++11 -o test.a test.cpp -I[boost_path] [boost_path]/stage/lib/libboost_regex.a

关于C++ 日期解析实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13047817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com