Question

Date Transformation from string format: Month (text, full name), Day (number, no leading 0s), Year (number).

  • 4 November 2022
  • 1 reply
  • 2 views

I'm working with a date field that needs to be converted from a text string giving the format as described in my title (e.g. October 1, 2022). I've found a lot of documentation on the DateTimeConverter, however none of the formats on the documentation seem to match up with my date format. This seems like a simple solution that I'm missing, any help is appreciated!


1 reply

Badge +2

@kjmcpherson​  the format string "%B %e, %Y" should do it. You can find all the date/time format flags under the DateTimeConverter Quick Reference panel or here.

Reply