+ Quantifier — Matches between one and unlimited times, as many times as possible, giving back as needed (greedy)
\d matches a digit (equal to [0-9])
\/ matches the character / literally (case sensitive)
\s matches any whitespace character (equal to [\r\n\t\f\v ])
\: matches the character : literally (case sensitive)