SQL Server正则表达式 替换函数应用详解
程序员文章站
2023-11-29 09:45:28
--sql正则替换函数 复制代码 代码如下: create function dbo.regexreplace ( @source ntext, --原字符串 @regex...
--sql正则替换函数
create function dbo.regexreplace
(
@source ntext, --原字符串
@regexp varchar(1000), --正则表达式
@replace varchar(1000), --替换值
@globalreplace bit = 1, --是否是全局替换
@ignorecase bit = 0 --是否忽略大小写
)
returns varchar(1000) as
begin
declare @hr integer
declare @objregexp integer
declare @result varchar(5000)
exec @hr = sp_oacreate 'vbscript.regexp', @objregexp output
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oasetproperty @objregexp, 'pattern', @regexp
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oasetproperty @objregexp, 'global', @globalreplace
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oasetproperty @objregexp, 'ignorecase', @ignorecase
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oamethod @objregexp, 'replace', @result output, @source, @replace
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oadestroy @objregexp
if @hr <> 0 begin
return null
end
return @result
end
/*
配置对扩展存储过程的支持
microsoft sql server 2005 -> 配置工具 -> 外围应用配置器 -> 功能的外围应用配置 -> ole自动化:支持ole自动化
使用举例1:
declare @source nvarchar(4000)
set @source = 'dsafsdf'
select dbo.regexreplace(@source, '\<[^\>]+\>', '', 1, 1)
使用举例2: (将数据库字段中含有<font color='#ff0000'>aaa</font>替换为<font>aaa</font>)
select id,dbo.regexreplace(字段,'<font([^>])*>','<font>',1,0) as 别名 from 表
*/
复制代码 代码如下:
create function dbo.regexreplace
(
@source ntext, --原字符串
@regexp varchar(1000), --正则表达式
@replace varchar(1000), --替换值
@globalreplace bit = 1, --是否是全局替换
@ignorecase bit = 0 --是否忽略大小写
)
returns varchar(1000) as
begin
declare @hr integer
declare @objregexp integer
declare @result varchar(5000)
exec @hr = sp_oacreate 'vbscript.regexp', @objregexp output
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oasetproperty @objregexp, 'pattern', @regexp
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oasetproperty @objregexp, 'global', @globalreplace
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oasetproperty @objregexp, 'ignorecase', @ignorecase
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oamethod @objregexp, 'replace', @result output, @source, @replace
if @hr <> 0 begin
exec @hr = sp_oadestroy @objregexp
return null
end
exec @hr = sp_oadestroy @objregexp
if @hr <> 0 begin
return null
end
return @result
end
/*
配置对扩展存储过程的支持
microsoft sql server 2005 -> 配置工具 -> 外围应用配置器 -> 功能的外围应用配置 -> ole自动化:支持ole自动化
使用举例1:
复制代码 代码如下:
declare @source nvarchar(4000)
set @source = 'dsafsdf'
select dbo.regexreplace(@source, '\<[^\>]+\>', '', 1, 1)
使用举例2: (将数据库字段中含有<font color='#ff0000'>aaa</font>替换为<font>aaa</font>)
select id,dbo.regexreplace(字段,'<font([^>])*>','<font>',1,0) as 别名 from 表
*/
上一篇: spring boot 本地图片不能加载(图片路径)的问题及解决方法
下一篇: jsp 重复提交问题
推荐阅读
-
SQL Server正则表达式 替换函数应用详解
-
SQL Server CROSS APPLY和OUTER APPLY的应用详解
-
SQL Server之JSON 函数详解
-
SQL Server中对数据截取替换的方法详解
-
SQL SERVER 2012新增函数之字符串函数FORMAT详解
-
SQL Server中利用正则表达式替换字符串的方法
-
SQL SERVER2012中新增函数之字符串函数CONCAT详解
-
MSSQL sql server 2005/2008 row_number()函数应用之–删除表中重复记录,只保留一条不重复数据
-
Sql Server 开窗函数Over()的使用实例详解
-
SQL Server 开窗函数 Over()代替游标的使用详解