Reputation: 399
I have logs which contains in full_message;
I am trying to write a search query to just get -EndPoint:example/example.
"-EndPoint:example/example" is not working
and I cant use "and" or "or" cause there hundreds of versions
Why and how can't/can I get only -EndPoint:example/example which doesn't have / at the end ?
Upvotes: 3
Views: 10483
Reputation: 10930
You can use the following regex:
"-EndPoint:example/example$"
It search for the string, making sure, it's the end of the string.
Upvotes: 0