How could I get the current h/m/s AM time into a string? And maybe also the date in numeric form (01/02/09) into another one?
|
feedback
|
|
I'd just like to point out something in these answers. In a date/time format string, '/' will be replaced with whatever the user's date separator is, and ':' will be replaced with whatever the user's time separator is. That is, if I've defined my date separator to be '.' (in the Regional and Language Options control panel applet, "intl.cpl"), and my time separator to be '?' (just pretend I'm crazy like that), then
would return 01.05.2009 6?01 PM In most cases, this is what you want, because you want to respect the user's settings. If, however, you require the format be something specific (say, if it's going to parsed back out by somebody else down the wire), then you need to escape these special characters:
or
which would now return 01/05/2009 6:01 PM EDIT: Then again, if you really want to respect the user's settings, you should use one of the standard date/time format strings, so that you respect not only the user's choices of separators, but also the general format of the date and/or time.
Both would return "1/5/2009" using standard US options, or "05/01/2009" using standard UK options, for instance.
Both would return "Monday, January 05, 2009" in US locale, or "05 January 2009" in UK.
"6:01 PM" in US, "18:01" in UK.
"6:01:04 PM" in US, "18:01:04" in UK.
"1/5/2009 6:01:04 PM" in US, "05/01/2009 18:01:04" in UK. Many other options are available. See docs for standard date and time format strings and custom date and time format strings. | ||||
feedback
|
|
You can use format strings as well.
or some shortcuts if the format works for you
Either should work. | |||||||||||
feedback
|
Here are some common format strings | |||
feedback
|
|
Be careful when accessing DateTime.Now twice, as it's possible for the calls to straddle midnight and you'll get wacky results on rare occasions and be left scratching your head. To be safe, you should assign DateTime.Now to a local variable first if you're going to use it more than once:
Note the use of lower case "hh" do display hours from 00-11 even in the afternoon, and "tt" to show AM/PM, as the question requested. If you want 24 hour clock 00-23, use "HH". | |||
|
feedback
|
| |||
|
feedback
|