I have a link like http://drive.google.com and I want to match \"google\" out of the link.
I have:
query: { bool : { must: {
I can't find a breaking change disabling regular expressions in match, but match: { text: '.*google.*'} does not work on any of my Elasticsearch 6.2 clusters. Perhaps it is configurable?
match
match: { text: '.*google.*'}
Regexp works:
"query": { "regexp": { "text": ".*google.*"} }