本文介绍了在sql server 2014中转换字母字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好。
在SQL Server 2014中是否有一种方法可以使用替换函数和正则表达式将字符串的所有字母字符转换为特殊字符?
我尝试过:
这样的事情:
Hi all.
Is there a way in SQL Server 2014 that all alphabet characters of a string be converted to a special character using "replace function" and "regular expression"?
What I have tried:
Something like this:
select REPLACE('pouria',('%[a-z]'),'x')
- 此代码不起作用
– this code doesn’t work
推荐答案
这篇关于在sql server 2014中转换字母字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!