013:06:10.674 WARNING baseclass::method some event happening
013:06:10.702 INFO derivedclass::method1 too much of log
013:06:10.703 ERROR devclass::subclass::methodb this is the actual functionality
013:06:10.703 ERROR devclassb::subclassb::method1 after the crash
in the above i want to select strings with
scope operator (::)
which comes after WARNING INFO ERROR how to select with regex
i tried like below,
(\d\d\d:\d\d:\d\d.\d\d\d INFO|ERROR|WARNING )(\w+::\w+) but it only selects warning. i tried to find using regex find