Click here to Skip to main content
15,893,161 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi all,


I would like to convert the string "January 4, 2013" in to "2013-01-04".

How can i do this.Is there any easy way to do this.

Please share some code.
how can i do this.

Regards,
Shefeek
Posted
Updated 14-Feb-13 19:59pm
v3

1 solution

char* str = "20101127 090600";

tm tm1;

sscanf(str,"%4d%2d%2d %2d%2d%2d",&tm1.tm_year,&tm1.tm_mon,&tm1.tm_mday,
&tm1.tm_hour,&tm1.tm_min,&tm1.tm_sec);

cout << tm1.tm_year << endl << tm1.tm_mon << endl << tm1.tm_mday << endl;
cout << tm1.tm_hour << endl << tm1.tm_min << endl << tm1.tm_sec << endl;


i think its use ful
 
Share this answer
 
Comments
shefeekcm 15-Feb-13 0:50am    
my input is not like this..........................
shefeekcm 15-Feb-13 0:50am    
am a beginner in cpp

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900