在C ++中拆分const char *

时间:2011-02-08 05:37:05

标签: c++ char const string-formatting

我怎么能拆分const char *?

我在const char上保存了日期模式。我想知道它是否有效。 由于我无法拆分const char *,我该怎么办呢?

2 个答案:

答案 0 :(得分:2)

如果您的系统拥有它,您可以轻松使用sscanf()strptime()来解析字符缓冲区中的日/月/年字段。您还可以将文本放入std :: stringstream,然后将值流式传输到数值变量ala:

std::istringstream is("2010/11/26");
int year, month, day;
char c1, c2;
if (is >> year >> c1 >> month >> c2 >> day &&
    c1 == '/' && c2 == '/')
{
    // numeric date fields in year, month, day...
    // sanity checks: e.g. is it really a valid date?
    struct tm tm;
    tm.tm_sec = tm.tm_min = tm.tm_hour = tm.tm_wday = tm.tm_yday = tm.tm_isdst = 0;
    tm.tm_mday = day;
    tm.tm_mon = month;
    tm.tm_year = year;
    time_t t = mktime(&tm);
    struct tm* p_tm = localtime(&t);
    if (p_tm->tm_mday == day && p->tm_mon == month && p->tm_year == year)
        // survived to/from time_t, must be valid (and in range)
        do something with the date...
    else
        handle date-like form but invalid numbers...
}
else
    handle invalid parsing error...

如果遇到困难,你应该尝试一下并发布具体问题。

答案 1 :(得分:1)

您应该在问题中添加详细信息,现在它过于宽泛。通常,您可以使用boost::regex_match来确定给定的正则表达式是否与给定的字符序列匹配。