18-10-16, 11:24 PM
(آخر تعديل لهذه المشاركة : 18-10-16, 11:33 PM {2} بواسطة silverlight.)
PHP كود :
Dim dtString As String = ("10 / 2 / 2016 08:00:56 ص")
Dim dateFrmatPattern As String = "dd/MM/yyyy"
Dim dt As DateTime = DateTime.Parse(dtString).ToString(dateFrmatPattern)
Dim timeFormatPattern As String = "HH:mm:ss"
Dim time As DateTime = DateTime.Parse(dtString).ToString(timeFormatPattern)
PHP كود :
Dim s As String = ("10 / 2 / 2016 08:00:56 ص")
Dim dateFrmatPattern As String = "dd/MM/yyyy"
Dim dt As DateTime = CType(Convert.ChangeType(s, GetType(DateTime)), DateTime).ToString(dateFrmatPattern)
Dim timeFormatPattern As String = "HH:mm:ss"
Dim time As DateTime = CType(Convert.ChangeType(s, GetType(DateTime)), DateTime).ToString(timeFormatPattern)

