18 |
N Displays the minute as a number without leading zeros (0 - 59). nn Displays the minute as a number with leading zeros (00 - 59). SECOND (S) S Displays the second as a number without leading zeros (0 - 59). ss Displays the second as a number with leading zeros (00 - 59). AM-PM (A,a) AM/PM Uses the 12-hour clock and display an uppercase AM with any hour before noon; display an uppercase PM with any hour between noon and 11:59 P.M. am/pm Uses the 12-hour clock and display a lowercase AM with any hour before noon; display a lowercase PM with any hour between noon and 11:59 P.M. A/P Uses the 12-hour clock and display an uppercase A with any hour before noon; display an uppercase P with any hour between noon and 11:59 P.M. a/p Uses the 12-hour clock and display a lowercase A with any hour before noon; display a lowercase P with any hour between noon and 11:59 P.M. AMPM Uses the 12-hour clock and display the AM string literal as defined by your system with any hour before noon; display the PM string literal as defined by your system with any hour between noon and 11:59 P.M. AMPM can be either uppercase or lowercase, but the case of the string displayed matches the string as defined by your system settings. The default format is AM/PM. MISC (\) \ Is an 'escape' character used to indicate the next character should be treated as a literal. It is used to embed literal strings using reserved characters within time strings.
|