You need to match a time value such as 12:00:32. Which of the following regular expressions would work for your code?
/ : : /
/[0-9]+:[0-9]+:[0-9]+/
/\d\d:\d\d:\d\d/
/[0-9]{2,}:[0-9]{2,}:[0-9]{2,}/