从字符串中标记/提取信息的最佳方法

时间:2011-01-20 21:09:58

标签: c++ string datetime tokenize

我正在尝试将我收到的日期时间转换为特定格式以插入MySQL数据库。该程序是用C ++编写的,以下解决方案有效,但我觉得它非常低效。

输入为:Mon Nov 08 17:41:23 +0000 2010
所需的输出格式为:YYYY-MM-DD HH:MM:SS
所以对于这个例子,输出将是:2010-11-08 17:41:23

我已经包含了代码的相关部分。

    //class variable
    std::map<std::string, std::string> monthMap;

void processor::initializeMonthMap(){
    monthMap["Jan"] = "01";
    monthMap["Feb"] = "02";
    monthMap["Mar"] = "03";
    monthMap["Apr"] = "04";
    monthMap["May"] = "05";
    monthMap["Jun"] = "06";
    monthMap["June"] = "06";
    monthMap["Jul"] = "07";
    monthMap["July"] = "07";
    monthMap["Aug"] = "08";
    monthMap["Sept"] = "09";
    monthMap["Sep"] = "09";
    monthMap["Oct"] = "10";
    monthMap["Nov"] = "11";
    monthMap["Dec"] = "12";
}

inline std::string processor::convertDate(std::string input) {
    //Format: Mon Nov 08 17:41:23 +0000 2010
    //To get to YYYY-MM-DD HH:MM:SS

    std::stringstream  newString(input);
    std::string temp1;
    std::string temp2;

    // Read Day in txt, discard
    newString >> temp1;

    //Read month, convert to number
    newString >> temp1;
    temp2 = "-" + monthMap[temp1] + "-";

    //Read Day in number
    newString >> temp1;
    temp2.append(temp1 + " ");

    //Read TimeStamp
    newString >> temp1;
    temp2.append(temp1);

    //Discard UTM adjustment
    newString >> temp1;

    //Read year
    newString >> temp1;

    //Add year to beginning of input
    temp1.append(temp2);

    return temp1;
}

3 个答案:

答案 0 :(得分:1)

使用boost::date_time。您可以使用格式字符串以各种方式格式化输入和输出。

答案 1 :(得分:1)

你正在解析字符串,幸运的是你可以通过简单的追加来构建输出。我不认为这会变得更有效率。

但是,看起来好像你可以使用seekg将光标定位在一周中的某一天并进行UTM调整。

http://www.cplusplus.com/reference/iostream/istream/seekg/

答案 2 :(得分:0)

如果您使用的是POSIX系统(即不是Windows),则可以使用strptime: http://www.mkssoftware.com/docs/man3/strptime.3.asp

这需要一个字符串并构建一个struct tm,您可以通过strftime以任何所需的格式输出。

有一些Windows实现,但默认情况下不可用。点击此处:Convert a string to a date in C++