gpt4 book ai didi

python - elasticsearch python正则表达式查询

转载 作者:行者123 更新时间:2023-12-02 22:40:44 24 4
gpt4 key购买 nike

我想执行“my * is”之类的查询,其结果应为“my name is”,“my car is”等。

from elasticsearch import Elasticsearch
from elasticsearch_dsl import Search
client = Elasticsearch([
{'host': 'localhost', 'port':9200}
])
s = Search(using=client, index="index_name") \
.query('regexp', title="my * is")
response = s.execute()

但是我得到的回应是空洞的。

最佳答案

感谢Wikto Stribizew在评论中提供正确答案。
这东西对我有用。

my [^ ]* is

*,很奇怪?之所以不接受此类内容,是因为它们实际上是指 here中提到的其他一些内容

谢谢,

关于python - elasticsearch python正则表达式查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31447810/

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