Search found 2 matches

by entrecanoer
Thu Jan 20, 2022 6:31 pm
Forum: Using LogMX
Topic: How to use message -> like (regex) to match beginning of line
Replies: 3
Views: 24027

Re: How to use message -> like (regex) to match beginning of line

Thanks for answering this. I also found the following to be helpful: The missing part was the “.*” at the end, which means “any character, any number of times” (“.” means “any character”, and “*” means “0 or more times”) You can learn more about Regular expressions syntax here: https://docs.oracle.c...
by entrecanoer
Wed Jan 12, 2022 8:49 pm
Forum: Using LogMX
Topic: How to use message -> like (regex) to match beginning of line
Replies: 3
Views: 24027

How to use message -> like (regex) to match beginning of line

I have many log entries that start with the text “QM42VT2”. I am trying to use the manual filter “Message -> like (regex)” to show those lines. I have tried many combinations of the regex string like: ^QM42VT2 ^QM42VT2* “^QM42VT2” “^QM42VT2*” But always get no logs entries shown. Here is an example ...