I have multiple strings I want to loop through and check if any match the below format (unix timestamp, space, d/m/Y)
1513592758 18/12/2017
I have been using https://regexr.com/ to test and the closest I have gotten is using the below
([0-9]) (0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d but this still does not give me an exact match.
Any help would be much appreciated!
+after the first[0-9]should help.