Re: How to? chunk or split ?
Hi,
You can convert any string that represents a true date time value using the ParseExact method of the DataTime Structure. i.e:_
Code:
Dim myDateFromString As DateTime = DateTime.ParseExact("20130612", "yyyyMMdd", CultureInfo.InvariantCulture)
MsgBox(myDateFromString.ToLongDateString)
You can then format this DateTime variable to display its information in which ever format you need. Have a look here for more information:-
http://msdn.microsoft.com/en-us/libr...code-snippet-1
Hope that helps.
Cheers,
Ian
Re: How to? chunk or split ?
Many thanks fer reply, Ian,
I will try to use the ParseExact method
Isa