Using GET I receive an array and one of the data items is a timestamp string in the format:
"date":"2017-01-11 12:19:15",
I have a function that needs to show specific data from this GET request for the current day only.
I think I would need to run an each loop and select only items that have the date: "2017-05-28", ignoring the "12:19:15" part.
Is there an easy and clean way to do this?
Many thanks!