日付形式「Www Mmm dd hh:mm:ss yyyy」を変換し、「dd hh:mm:ss」だけを C++ の文字列にコピーしたい。
私はこれまでのところ、次のようになりました:
char str[255];
char str1[255];
int y = 0;
int i;
time_t timer;
timer = GetTickCount();
strcpy(str, ctime(&timer));
sendBuff[strlen(str) - 1] = '\0'; //to remove the new-line from the created string
//to copy from the string the exact Time Without Date from the struct of Www Mmm dd hh:mm:ss yyyy - will take only hh:mm:ss
for (i = 11; i < 19; i++, y++)
strcpy(&str1[y], &str[i]);