![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift) Parse a Microsoft JSON Date (MS AJAX Date)Demonstrates how to parse a Microsoft JSON Date, also known as an MSAJAX date. Note: This example requires Chilkat v11.0.0 or greater.
func chilkatTest() { var success: Bool = false // Parse Microsoft JSON Dates (AJAX Dates) let json = CkoJsonObject()! success = json.load("{ \"AchievementDate\":\"/Date(1540229468330-0500)/\"}") let dt = CkoDateTime()! success = json.date(of: "AchievementDate", dateTime: dt) if success != true { print("Unable to parse a date/time.") return } // Show the date in different formats: var bLocal: Bool = true print("RFC822: \(dt.getAsRfc822(bLocal)!)") print("Timestamp: \(dt.getAsTimestamp(bLocal)!)") print("YYYY-MM-DD: \(dt.getAsIso8601("YYYY-MM-DD", bLocal: bLocal)!)") // Get integer values for year, month, day, etc. let dtObj = CkoDtObj()! dt.toDtObj(bLocal, dtObj: dtObj) print("year: \(dtObj.year.intValue)") print("month: \(dtObj.month.intValue)") print("day: \(dtObj.day.intValue)") print("hour: \(dtObj.hour.intValue)") print("minute: \(dtObj.minute.intValue)") print("seconds: \(dtObj.second.intValue)") // Sample output: // RFC822: Mon, 22 Oct 2018 17:31:08 -0500 // Timestamp: 2018-10-22T17:31:08-05:00 // YYYY-MM-DD: 2018-10-22 // year: 2018 // month: 10 // day: 22 // hour: 17 // minute: 31 // seconds: 8 } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.