Appendix P. Date and Time Format Specifiers

A program uses date and time format specifiers to determine how dates and times are represented as strings. For example, the Date object's ToString method returns a string representing a date and time. An optional parameter to this method tells the object whether to format itself as in 2/20/2010, 02.20.10 A.D or Saturday, February 20, 2010 2:37:18 PM.

Visual Basic provides two kinds of specifiers that you can use to determine a date and time value's format: standard format specifiers and custom format specifiers.

STANDARD FORMAT SPECIFIERS

A standard format specifier is a single character that you use alone to indicate a standardized format. For example, the format string d indicates a short date format (as in 2/20/2010).

The following table lists standard format specifiers that you can use to format date and time strings. The results depend on the regional settings on the computer. The examples shown in this table are for a typical computer in the United States.

SPECIFIER

MEANING

EXAMPLE

d

Short date.

2/20/2010

D

Long date.

Saturday, February 20, 2010

t

Short time.

2:37 PM

T

Long time.

2:37:18 PM

f

Full date/time with short time.

Saturday, February 20, 2010 2:37 PM

F

Full date/time with long time.

Saturday, February 20, 2010 2:37:18 PM

g

General date/time with short time.

2/20/2010 2:37 PM

G

General date/time with long time.

2/20/2010 2:37:18 PM

m or M

Month and date.

February 20

r or R

RFC1123 pattern.Formatting does not convert the time to Greenwich Mean Time (GMT), so ...

Get Visual Basic® 2010 Programmer's Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.