Is there an efficient way to search a message for substrings which might represent a time?
For example, this message:
let's meet tomorrow at 14:30 or do you prefer 2:30pm?
should return ('14:30', '2:30pm')
. Finding hh:mm times can be easily achieved using a simple regex, but I'm wondering if there are existing solutions to find more than the simple cases.