是否可以使用正则表达式对 PL/PGSQL 中的文本进行标记?
我想使用正则表达式对数据库中的文本进行标记,并将生成的标记存储在表中。首先,我想用空格分割单词,然后用标点符号分割每个标记。
我在我的应用程序中执行此操作,但在数据库中执行它可能会加快速度。
可以这样做吗?
I want to tokenize text in my database with RegEx and store the resulting tokens in a table. First I want to split the words by spaces, and then each token by punctuation.
I'm doing this in my application, but executing it in the database might speed it up.
Is it possible to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有许多函数可以完成此类任务。
要检索文本的第二个单词:
拆分整个文本并每行返回一个单词:
实际上,最后一个示例会在任何空白区域上进行拆分。)
There is a number of functions for tasks like that.
To retrieve the 2nd word of a text:
Split the whole text and return one word per row:
Actually, the last example splits on any stretch of whitespace.)