如何使用redshift从字符串中删除反斜杠?
Posted
技术标签:
【中文标题】如何使用redshift从字符串中删除反斜杠?【英文标题】:how to remove backslash from a string using redshift? 【发布时间】:2017-10-23 07:43:02 【问题描述】:如何去除 redshift 中的反斜杠?
例如: 1\234
我只想要: 1 234
我尝试了 regexp_replace 函数,但没有成功。
【问题讨论】:
【参考方案1】:REPLACE(string1, old_chars, new_chars)
select replace('1\\2345','\\',' ')
http://docs.aws.amazon.com/redshift/latest/dg/r_REPLACE.html
【讨论】:
以上是关于如何使用redshift从字符串中删除反斜杠?的主要内容,如果未能解决你的问题,请参考以下文章