Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FDateTime
Description
Parses a date string in ISO-8601 format.
| Name | ParseIso8601 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/DateTime.h |
| Include Path | #include "Misc/DateTime.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/DateTime.cpp |
static bool ParseIso8601
(
const TCHAR * DateTimeString,
FDateTime & OutDateTime
)
true if the string was converted successfully, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| DateTimeString | The string to be parsed |
| OutDateTime | FDateTime object (in UTC) corresponding to the input string (which may have been in any timezone). |
See Also
-
ToIso8601