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
(C++) Compute Difference Between Two DateTime StringsDemonstrates how to compute the difference between two datetime strings.
#include <CkStringBuilder.h> #include <CkDateTime.h> void ChilkatSample(void) { // Imagine we have these strings: const char *t1 = "2022-11-14 15:45:38"; const char *t2 = "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. CkStringBuilder sb1; sb1.Append(t1); int count = sb1.Replace(" ","T"); sb1.Append("Z"); CkStringBuilder sb2; sb2.Append(t2); count = sb2.Replace(" ","T"); sb2.Append("Z"); // Load each into a CkDateTime CkDateTime dt1; dt1.SetFromTimestamp(sb1.getAsString()); // verify... std::cout << dt1.getAsTimestamp(false) << "\r\n"; CkDateTime dt2; dt2.SetFromTimestamp(sb2.getAsString()); // verify... std::cout << dt2.getAsTimestamp(false) << "\r\n"; // Get the difference in seconds int diffSeconds = dt2.DiffSeconds(dt1); std::cout << "Difference in seconds: " << diffSeconds << "\r\n"; std::cout << "Difference in minutes: " << (diffSeconds / 60) << "\r\n"; } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.