I have this string which is a result of net time \\SERVER_NAME command in cmd :
Current time at \\SERVER_NAME is 3/31/2014 9:35:57 AM
The simplest regex to only match the time would be something like:
\d\d?\:\d\d\:\d\d\s?(A|P)M
Is that what you're after?