Support Board
Date/Time: Wed, 05 Nov 2025 14:25:10 +0000
Post From: [Programming help] transferring an ISO date to SCDateTime
| [2025-09-14 15:56:14] |
| Tony - Posts: 640 |
|
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()) }; |
