与Postgres regexp_matches多次匹配

前端之家收集整理的这篇文章主要介绍了与Postgres regexp_matches多次匹配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用Postgres regexp_matches函数从字符串中拉出主题标签…以下示例仅返回匹配 – 如何提取两个主题标签
regexp_matches("Hello #world #planet",'#([A-Za-z0-9]+)')

干杯,
安德烈

你应该用’not’括起字符串文字.在评论中建议添加’g’应该有帮助:
SELECT regexp_matches('Hello #world #planet','#([A-Za-z0-9]+)','g')

SqlFiddleDemo

╔════════════════╗
║ regexp_matches ║
╠════════════════╣
║ world          ║
║ planet         ║
╚════════════════╝
原文链接:https://www.f2er.com/postgresql/238901.html

猜你在找的Postgre SQL相关文章