So I have been experimenting with regex in order to parse the following strings:
INFO: Device 6: Time 20.11.2015 06:28:00 - [Script] FunFehlerButton: Execute [0031 text]
and
INFO: Device 0: Time 09.12.2015 03:51:44 - [Replication] FunFehlerButton: Execute
and
INFO: Device 6: Time 20.11.2015 06:28:00 - FunFehlerButton: Execute
The regex I tried to use are:
(?<=\\d{1,2}:\\d{2}:\\d{2} - ).*
and
(?<=\\[\\w*\\]).*
of which the first one runs correctly and the second one lands in a expcetion.
My goal is to get the text "FunFehlerButton: Execute ...".
I hope someone can hint me in the right direction.