Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in C Sharp only
Search
Advanced Search
Forums
BYTES
Product Launch
Updates
Developer Toolkit
Member List
Calendar
Today's Posts
Home
Forum
Topic
C Sharp
Convert string to date format
Convert string to date format
Collapse
This topic is closed.
X
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
megala
#1
Convert string to date format
Nov 17 '05, 03:14 AM
Hi
How to convert a string "11022005" to a specific date format-02/11/2005
Tom Porterfield
#2
Nov 17 '05, 03:15 AM
Re: Convert string to date format
megala wrote:[color=blue]
> Hi
> How to convert a string "11022005" to a specific date format-02/11/2005[/color]
Use DateTime.ParseE xact, passing it the format of the date within the string.
--
Tom Porterfield
Comment
Post
Cancel
James Curran
#3
Nov 17 '05, 03:15 AM
Re: Convert string to date format
Tom seemed to only give you half of it.
string d = "11022005";
string formatted = DateTime.ParseE xact(d,
"ddMMyyyy").ToS tring("MM/dd/yyyy");
Or if you prefer, the string-only solution:
string d = "11022005";
string formatted = d.Substring(2,2 ) + '/' + d.Substring(0,2 ) + '/' +
d.Substring(4,4 );
--
--
Truth,
James Curran
[erstwhile VC++ MVP]
Home:
www.noveltheory.com
Work:
www.njtheater.com
Blog:
www.honestillusion.com
Day Job:
www.partsearch.com
"megala" <megala@discuss ions.microsoft. com> wrote in message
news:2DDDD033-0794-44B9-B5D7-7516505E5A61@mi crosoft.com...[color=blue]
> Hi
> How to convert a string "11022005" to a specific date format-02/11/2005[/color]
Comment
Post
Cancel
Previous
template
Next
Working...
OK
OK
Cancel
👍
👎
☕
Comment