如何使用 T-SQL 替换模式?
我有规范化 POB 地址的代码。例如,其中包含的规范化之一是:
set @string = replace(@string, 'pobox', 'pob')
现在我想做类似的事情:我想找到任何直接跟在数字后面(中间没有空格)的 POB 并插入一个空格。我想找到类似于 POB[0-9] 的模式,然后将“POB”替换为“POB”。我怎样才能做到这一点?可以通过简单的替换来完成吗?或者我是否需要使用其他函数,例如 PATINDEX
?
I have code to normalize a POB address. For example, one of the normalizations included is:
set @string = replace(@string, 'pobox', 'pob')
Now I want to do something similar: I want to find any POB that is directly followed by a number (without a space in between) and insert a space. I want to find the pattern like POB[0-9]
and then replace the "POB" with "POB ". How can I accomplish this? Can it be done with a simple replace? Or do I need to use some other function, like PATINDEX
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你是对的,你可以使用 PATINDEX
或者可能更好的方法是使用
case
语句,以便可以轻松地将其合并到select
语句中Yes you are correct you can use PATINDEX
Or probably a nicer way would be to use a
case
statement so that it can be easily incorporated in to aselect
statement