Jump to content

Recommended Posts

Posted

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)
Posted

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!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...