is a valid 8601 format for representing start + end time. Does anyone know how I'd parse that using kotlinx-datetime to get my start and end time... or maybe duration?
(all I want to do is see if the current local time is within that string format of start/end)
Yeah, I just ended up doing a string split on / and then LocalTime.parse the two times.
Colton Idle
12/12/2023, 2:01 PM
yeah. i used to think 8601 was like a single "format", but even if you agree with your team that "we'll use 8601" you still have to actual pick a pattern