I need to compare 2 string dates to see if one date is later then another. The date format for both dates is at the bottom. i can rearrange this for what ever is easiest. I have boost but it doesn’t have to be, ive been through so many examples and can’t seem to wrap my brain around getting it to work. Thanks in advance basically i want
2012-12-06 14:28:51
if (date1 < date2) {
// do this
}
else {
// do that
}
It looks like the date format your using is already in lexicographical order and a standard string comparison will work, something like:
You will need to make sure that spacing and punctuation is consistent when using this format, in particular something like
2012-12-06 9:28:51will break the comparison.2012-12-06 09:28:51will work though.