gcue Posted May 5, 2008 Posted May 5, 2008 is it possible to stringsplit a space? i want to isolate the date from the time #include <GuiConstantsEx.au3> #include <Date.au3> $tCur = _Date_Time_GetSystemTime() $cdate = _Date_Time_SystemTimeToDateTimeStr($tCur) $cdate2=StringSplit($cdate," ") MsgBox(0, "date-time", $cdate) MsgBox(0, "date-time", $cdate2)
monoceres Posted May 5, 2008 Posted May 5, 2008 is it possible to stringsplit a space? i want to isolate the date from the time #include <GuiConstantsEx.au3> #include <Date.au3> $tCur = _Date_Time_GetSystemTime() $cdate = _Date_Time_SystemTimeToDateTimeStr($tCur) $cdate2=StringSplit($cdate," ") MsgBox(0, "date-time", $cdate) MsgBox(0, "date-time", $cdate2) StringSplit returns an array Broken link? PM me and I'll send you the file!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now