I’m pretty sure Mshort only parses titlized months, so Jan, Feb, etc…, not things like JAN, FEB, etc…
You can either preprocess it to map the caps to titlecased months, or you can make a new timex tokanizer parser thing to pass in to parse to parse it as capped (or lowercase it all to compare or whatever).
That’s a really weird format though, without your format string I wouldn’t know if that’s August 22, 2018 or August 18, 2022, lol.
As you went that far with manual parsing, then I would finish it manually instead of using Timex. Especially if you do not use any other Timex features
Yep, that’s exactly the mapping before hand, quite easy. ^.^
Baby is so busy! Trying to be a toddler already!
Yeah it would be pretty trivial to finish it off by piping into a case and matching on the elements and parsing the strings to integers and such with a map mapping from months to a month integer.