Login Page - Create Account

Support Board


Date/Time: Mon, 15 Sep 2025 13:43:52 +0000



Post From: [Programming help] transferring an ISO date to SCDateTime

[2025-09-14 15:56:14]
Tony - Posts: 625
I would read the whole ISO string to a SCString variable, and just get sub-strings, i.e.

SCString ISO_String {2025-08-29T19:59:54.957947625Z};
int ISO_Minute {
atoi(ISO_String.GetSubString(2,14).GetChars())
};