Python Regular Expressions: Pattern to Capture Error Message Section 6, Lecture 36 - edorlando07/datasciencecoursera GitHub Wiki

Text Example Below

2016/05/28 19:24:30 ERROR 2 (0x00000002) Accessing Source Directory C:\RegularExpressionsWithDotNet\robocopytest\source2\The system cannot find the file specified.`

Challenge: Find the 2016/05/28 19:24:30 pattern in the text above.
Answer: (\d{4})(/)(\d{2})(/)(\d{2})(\s)(\d{2}:)(\d{2}:)(\d{2})