Skip to content

Instantly share code, notes, and snippets.

@PAMinerva
PAMinerva / strToTp.cpp
Created January 25, 2025 08:18 — forked from franklinjr12/strToTp.cpp
C++ string to date (time_point)
#include <iostream>
#include <chrono>
#include <sstream>
#include <iomanip>
#include <format>
using namespace std;
using namespace std::chrono;
system_clock::time_point strToTp(string dateString)