gpt4 book ai didi

regex - mongodb中单引号的正则表达式

转载 作者:可可西里 更新时间:2023-11-01 10:01:28 29 4
gpt4 key购买 nike

在 mongodb shell 客户端中,如何查询以查找带单引号的文档?我在正则表达式中转义了引号。但它不起作用。

db.coll.find({field: /\'/})

最佳答案

这应该有效:

db.coll.find({field: /\x27/});

其中 0x27 是 Unicode APOSTROPHE

来自 documentation :

MongoDB regex queries support UTF-8 in the regex string.

关于regex - mongodb中单引号的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9494372/

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