Hello,
I am trying to search values that contains numbers or numbers in a quotes (no other character types except whitespaces). I was not able to use double-quotes character in character class. I have tried both
\" and \\\"
and no combination works.
Is it possible? I the end, I would like to match 123, "123 ", 1 2 "3" etc.
Thanks.
Does not match anything:
GET myindex/_search
{
"query": {
"regexp": {
"search_query": {
"value": "[\"]+"
}
}
}
}