How do I convert a string to DateTime format? For example, if I had a string like:
"24/10/2008"
How do I get that into DateTime format ?
|
|
|
|
|
|
|
Use DateTime.ParseExact:
(You should consider what culture you actually want to parse it in, admittedly.) EDIT: Other answers have specified "null" as the third parameter - this is equivalent to using For other formats, see "Custom Date and Time Format Strings" in MSDN. |
|||
|
|
|
|
Try something like
For time this might work
|
|||
|
|
|
|
|
||
|
|
|
|
If you don't know the format, use:
This tries to parse the string representation of a date and time using the formatting rules of the current culture (e.g. English (US) "en-US", German "de-DE", ...). It tries to ignore unrecognized data, and fills in missing values for year, month and day with the current date (if parsing only a string containing the time for example). If you know that the used culture of the string is different from the current one, you can specify the culture to use:
You should allways suround the conversion by a try-catch block since the string must conform to a recognized pattern. Alternatively, you can also test the validity of the string with the method If you know the exact format, you can use
(See Custom Date and Time Format Strings from the MSDN site for other format strings). |
||
|
|
|
|
I'd also suggest looking at I'd also second Jon Skeet's recommendation to use |
||
|