gpt4 book ai didi

regex - 基于Elasticsearch字符串的查询以匹配正则表达式

转载 作者:行者123 更新时间:2023-12-02 23:54:45 26 4
gpt4 key购买 nike

我想知道是否可以进行基于字符串的查询以匹配Elasticsearch中的正则表达式。

我知道还有另一种方法(进行正则表达式查询以匹配Elasticsearch文档中的字符串),但是我可以基于字符串进行查询并使用Elasticsearch匹配文档中保存的正则表达式吗?

例如,我有一个包含数据的文档,其中包括输入(正则表达式)和输出(描述正则表达式),如下所示:

{
"input": "[0-9]+ ?kg",
"output": "weight"
}

我可以使用字符串“67kg”进行查询以匹配正则表达式并获取以下内容:
{
"took" : 1,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 1,
"max_score" : 1.0,
"hits" : [
{
"_index" : "test1",
"_type" : "type",
"_id" : "XqXucGgBXOzlaMdqiLcI",
"_score" : 1.0,
"_source" : {
"input" : "[0-9]+ ?kg",
"output" : "weight"
}
}
]
}
}

最佳答案

您可以使用Percolate Query 功能实现类似的功能。

基本上的想法是,您的文档就是查询,您可以将它们与您的文档一起搜索以查看这些文档是否匹配。

您需要使用特殊字段类型percolator创建索引。例如,

PUT /my-index
{
"mappings": {
"_doc": {
"properties": {
"input": {
"type": "keyword"
},
"query": {
"type": "percolator"
}
}
}
}
}

在此之后,添加一个文档(该查询将使您的字段 input与一个正则表达式匹配)

例如,
PUT /my-index/_doc/1
{
"query" : {
"regexp" : {
"input" : "[0-9]+( kg)?"
}
}
}

另外,例如,您可以根据需要在此处尝试其他查询。

完成这一步之后,执行以下操作,测试您的文档如何再次匹配哪个查询:
GET /my-index/_search
{
"query" : {
"percolate" : {
"field" : "query",
"document" : {
"input" : "67 kg"
}
}
}
}

关于regex - 基于Elasticsearch字符串的查询以匹配正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54306208/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com