Re: Conversion of ISO Date String to AppleScript Date
Re: Conversion of ISO Date String to AppleScript Date
- Subject: Re: Conversion of ISO Date String to AppleScript Date
- From: Ed Stockly <email@hidden>
- Date: Sat, 04 Mar 2017 20:03:13 -0800
This works too…
----------------
set ISOdateString to "2017-03-04 11:15:01"
set appleScriptDate to my AppleScriptISODate(ISOdateString)
on AppleScriptISODate(ISOdateString)
set saveTID to AppleScript's text item delimiters
set AppleScript's text item delimiters to {"-", " ", ":"}
set {theYear, theMonth, theDay, theHour, theMin, theSec} to text items of ISOdateString
set myDate to current date
tell (current date)
set {year, month, day, hours, minutes, seconds} to {theYear as integer, theMonth as integer, theDay as integer, theHour as integer, theMin as integer, theSec as integer}
end tell
set AppleScript's text item delimiters to saveTID
return myDate
end AppleScriptISODate
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden