LCTime»dFmt
"Answers a string containing the standard date format. It may contain any combination of characters and field descriptors. The date format is composed of characters and the following field definitions from the POSIX CTIME() definition.
Identifier Meaning %b -> Month, using locale's abbreviated month names %B -> Month, using locale's full month names %m -> Month number (01-12) %z -> Month number (1-12) no leading zeros
%d -> Day of month (01-31) %e -> Day of month (1-31, single digits preceded by a space) %f -> Day of month (1-31) no leading zeros
%w -> Day of week, Sunday is day 0 %A -> Day of week, using locale's weekday names %a -> Day of week, using locale's abbreviated weekday names %y -> Year within century (00-99) %Y -> Year including century (eg: 1993)
“