现有一字段address类型为"address": {
"search_analyzer": "ik_smart",
"analyzer": "ik_max_word",
"type": "string"
}
需要检索该字段包含括号字符的所有数据 求大神帮助
"search_analyzer": "ik_smart",
"analyzer": "ik_max_word",
"type": "string"
}
需要检索该字段包含括号字符的所有数据 求大神帮助
2 个回复
tacsklet - 公司有用到es
赞同来自: TinaZhou
[\(]
TinaZhou
赞同来自:
{
"query": {
"bool": {
"must": [
{
"exists": {
"field": "address"
}
}
],
"must_not": [
{
"query": {
"regexp": {
"address": {
"value": "[(]",
"flags": "ALL",
"max_determinized_states": 10000,
"rewrite": "constant_score"
}
}
}
}
]
}
}
}