有没有一种简单的方法可以删除 tsvector 中词素的出现?

发布于 2024-08-22 08:49:10 字数 117 浏览 4 评论 0原文

我在表中有一个 tsvector 列,我希望能够从 tsvector 中删除词素。

我已经开始使用 ts_stat 来重建一个新的 tsvector,但它看起来相当复杂。

有简单的方法吗?

I've got a tsvector column in a table and I would like to be able to remove a lexeme from the tsvector.

I've started playing around with ts_stat to rebuild a new tsvector, but it seems quite complicated.

Is there a simple way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我偏爱纯白色 2024-08-29 08:49:10

将其转换为文本,使用正则表达式删除,然后转换回 tsvector。

Cast it to text, remove with regexp, and cast back to tsvector.

饭团 2024-08-29 08:49:10

截至 2022 年 8 月(撰写此评论时),您可以使用 ts_delete(),它具有以下签名:

ts_delete(vector tsvector, lexeme text) → tsvector
ts_delete(vector tsvector, lexemes text[]) → tsvector

单个词位的示例:

ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, 'fat') → 'cat':3 'rat':5A

如签名中所示,您还可以传递数组:

ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, ARRAY['fat','rat']) → 'cat':3

一个有趣的用例是从另一个 tsvector 中减去一个 tsvector,这可以通过组合 ts_delete()来完成tsvector_to_array():

ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, tsvector_to_array('cat fat'::tsvector)) → 'rat':5A

As of Aug 2022 (the moment when this comment was written), you can use ts_delete(), which has the below signatures:

ts_delete(vector tsvector, lexeme text) → tsvector
ts_delete(vector tsvector, lexemes text[]) → tsvector

Example case for a single lexeme:

ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, 'fat') → 'cat':3 'rat':5A

As seen in the signature, you can also pass an array:

ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, ARRAY['fat','rat']) → 'cat':3

An interesting use case is subtracting a tsvector from another tsvector, which can be done by combining ts_delete() and tsvector_to_array():

ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, tsvector_to_array('cat fat'::tsvector)) → 'rat':5A
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文