hey, why I can't parse this iso8601 string to `Loc...
# kotlinx-datetime
k
hey, why I can't parse this iso8601 string to
LocalDate
?
Copy code
val iso8601String = "2024-02-09T19:33:16.744083"
k
because it’s not a local date, it’s a local date time.
k
ok
k
the
T19:33:16.744083
denotes a time appended to a date. Because it lacks a UTC offset, it’s local. Therefore it’s a local date time.
k
thank u, I will use iso string to parse