Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using below method to validate Date. How to format month in string ?

bool CDateTime :: IsValidDate(char* pcDate) //pcDate = 25-Jul-2012 15:08:23
{
    bool bVal = true;
    int iRet = 0;
    struct tm tmNewTime;   

    iRet = sscanf_s(pcDate, "%d-%d-%d %d:%d:%d", &tmNewTime.tm_mon, &tmNewTime.tm_mday, &tmNewTime.tm_year, &tmNewTime.tm_hour, &tmNewTime.tm_min, &tmNewTime.tm_sec);
    if (iRet == -1)
        bVal = false;

    if (bVal == true)
    {
        tmNewTime.tm_year -= 1900;
        tmNewTime.tm_mon -= 1;
        bVal = IsValidTm(&tmNewTime);
    }
    return bVal;

}
share|improve this question
fyi, the struct in struct tm tmNewTime; is redundant in C++. – chris Jul 25 '12 at 6:20
You mixed up "tm_mon" and "tm_year" in your sscanf_s statement. – Jakob S. Jul 25 '12 at 6:26
Maybe have a look at stackoverflow.com/questions/308390/… ? – Jakob S. Jul 25 '12 at 6:29
Are you asking about how to do the actual validation, or about how to do the formatting? – Joachim Pileborg Jul 25 '12 at 6:48

2 Answers

Using strptime:

#include <time.h>
char *str = "25-Jul-2012 15:08:23";
struct tm tm;
if (strptime (str, "%d-%b-%Y %H:%M:%S", &tm) == NULL) {
   /* Bad format !! */
}
share|improve this answer
I Have included <time.h > bit it is saying strptime identifier not found – user662285 Jul 25 '12 at 6:37
what is the platform you are working on? – perreal Jul 25 '12 at 6:39
Windows......... – user662285 Jul 25 '12 at 6:55
@user662285, see this answer: stackoverflow.com/a/321877/390913 – perreal Jul 25 '12 at 6:58

The C++11 way of doing this is:

#include <iostream>
#include <iomanip>
#include <ctime>
#include <chrono>

int main()
{
    auto now = std::chrono::system_clock::now();
    auto now_c = std::chrono::system_clock::to_time_t(now);

    std::cout << "Now is " << std::put_time(std::localtime(&now_c), "%d-%b-%Y %H:%M:%S") << '\n';
}

Note: The stream I/O manipulator std::put_time is not implemented fully in all compilers yet. GCC 4.7.1 does not have it for example.

share|improve this answer
The question is about validation of a date given as string, not about streaming out a date as string. – Jakob S. Jul 25 '12 at 6:43
@JakobS. To quote from the question: "How to format month in string ?" The OP states he want to validate a date, but asks about formatting. – Joachim Pileborg Jul 25 '12 at 6:47
Ok, you are right - the title does not really reflect the question. – Jakob S. Jul 25 '12 at 6:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.