Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift 3,4,5...) Compute Difference Between Two DateTime StringsDemonstrates how to compute the difference between two datetime strings.
func chilkatTest() { // Imagine we have these strings: var t1: String? = "2022-11-14 15:45:38" var t2: String? = "2022-11-16 17:23:41" // How many minutes are between the two? // First, we'd want load each date/time into a Chilkat CkDateTime object. // In this case, there are no CkDateTime methods that accept the above format. // However.. the CkDateTime's SetFromTimestamp will accept a date in the format "YYYY-MM-DDThh:mm:ssZ" // First modify the above dates to the timestamp format. let sb1 = CkoStringBuilder()! sb1.append(t1) var count: Int = sb1.replace(" ", replacement: "T").intValue sb1.append("Z") let sb2 = CkoStringBuilder()! sb2.append(t2) count = sb2.replace(" ", replacement: "T").intValue sb2.append("Z") // Load each into a CkDateTime let dt1 = CkoDateTime()! dt1.setFromTimestamp(sb1.getAsString()) // verify... print("\(dt1.getAsTimestamp(false)!)") let dt2 = CkoDateTime()! dt2.setFromTimestamp(sb2.getAsString()) // verify... print("\(dt2.getAsTimestamp(false)!)") // Get the difference in seconds var diffSeconds: Int = dt2.diffSeconds(dt1).intValue print("Difference in seconds: \(diffSeconds)") print("Difference in minutes: \(diffSeconds / 60)") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.