Date and time formatting characters
Various date and time formatting routines accept a format string. to format the date and or time. The following characters can be used to control the date and time formatting:
- c
- shortdateformat + ' ' + shorttimeformat
- d
- day of month
- dd
- day of month (leading zero)
- ddd
- day of week (abbreviation)
- dddd
- day of week (full)
- ddddd
- shortdateformat
- dddddd
- longdateformat
- m
- month
- mm
- month (leading zero)
- mmm
- month (abbreviation)
- mmmm
- month (full)
- y
- year (2 digits)
- yy
- year (two digits)
- yyyy
- year (with century)
- h
- hour
- hh
- hour (leading zero)
- n
- minute
- nn
- minute (leading zero)
- s
- second
- ss
- second (leading zero)
- t
- shorttimeformat
- tt
- longtimeformat
- am/pm
- use 12 hour clock and display am and pm accordingly
- a/p
- use 12 hour clock and display a and p accordingly
- /
- insert date seperator
- :
- insert time seperator
- "xx"
- literal text
- 'xx'
- literal text
Notes
No notes exist for this page yet.