How to convert the date displayed 7/19/2010 12:00:00 AM to July/Sunday/2010???
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Do you already have this as a DateTime? If so, it's easy:
This will use the thread's current culture - you can use a specific culture or the invariant culture, e.g.
Note that the "/" has been escaped here, as otherwise it would use the culture's date separator symbol. Another option for escaping is to use a backslash, but then you need to either escape that or use a verbatim string literal (assuming C# due to your previous questions):
|
|||
|
|
|
Something like this:
|
|||
|
|
