Hi all,
I have a field on Kibana that has long text string values. Sometimes, these values contain commas and sometimes they do not. I want to search on Kibana for any of these values that DO NOT contain commas in the string. Nothing I am trying is working. How can search for only the values without commas?
E.g.
document 1:
"message" => "hello hello 123"
document 2:
"message" => "hello, hello 123"
The query should only return document 2, because the message value contains a comma.