我只需要替换括号内文本中的所有空格"Describe what you (tried and) what (you expected) to happen"
加上逗号,如下所示:"Describe what you (tried,and) what (you,expected) to happen"
请建议如何使用函数regexp_replace正确执行此操作。提前感谢。
我只需要替换括号内文本中的所有空格"Describe what you (tried and) what (you expected) to happen"
加上逗号,如下所示:"Describe what you (tried,and) what (you,expected) to happen"
请建议如何使用函数regexp_replace正确执行此操作。提前感谢。
1条答案
按热度按时间mlnl4t2r1#
用一个简单的
regexp_replace
函数就不那么容易了...如果括号中最多有两个单词,则可以:
如果括号内有两个或更多单词,则必须创建自己的
aggregate
函数:而查询是:
参见dbfiddle中的测试