I try to regex the following string
: hostname: Oct 16 03:49:39.515: %BLA: message
and want to get the strings between the ": " and the last string after the last ": "
when I use : (.+?):
I get hostname
.
Unfortenately I am not able to get Oct 16 03:49:39.515
, %BLA
and message
. I need single regex for every substring, I don't want to have them all in one.