gpt4 book ai didi

regex - 在最后一次出现 '- ' 或 '|' 后截断字符串

转载 作者:行者123 更新时间:2023-11-29 12:08:46 25 4
gpt4 key购买 nike

我正在使用 Postgres,并且想删除最后一次出现的“-”或“|”之后的所有内容。这是我提出的查询:

select regexp_replace( title, E'(- |\\|).+$', '') as title from articles

问题是这样的字符串:

'Trump tweets in China - how, and why does it matter? - BBC News'

被过早截断:

'Trump tweets in China'

如何让它只在最后一次出现“-”之后删除后缀?

谢谢!

最佳答案

你可以试试这个:

select regexp_replace ('Trump tweets in China - how, and why does it matter? - BBC News',
'[|-][^|-]*$', '')

基本上是说:

  • |-
  • 在字符串末尾跟任意数量的既不是|也不是-的字符

结果:

Trump tweets in China - how, and why does it matter? 

关于regex - 在最后一次出现 '- ' 或 '|' 后截断字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47771261/

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