Date and time
dunbarxx
dunbarx at aol.com
Thu Jun 6 18:18:10 EDT 2019
Feel like I am overdoing this, but a bit more compact:
on mouseUp
put "06-Jun-2019;09:05:21" into rawTime -- your formatted moment here
set the itemDel to "-"
put item 1 of rawTime into tDay
put itemOffset(item 2 of
rawTime,"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec") into tMonth
put item 3 of rawTime into temp
set the itemDel to ";"
put item 1 of temp into tYear
delete item 1 of temp
set the itemDel to ":"
put item 1 of temp into tHour
put item 2 of temp into tMinutes
put item 3 of temp into tSeconds
put tYear & "," & tMonth & "," & tDay & "," & tHour & "," & tMinutes &
"," & tSeconds & "," & tDay into standardFormat
convert standardFormat from dateItems to seconds
answer standardFormat
end mouseUp
Brute force for sure. My favorite.
Craig
--
Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
More information about the use-livecode
mailing list