首页 > 其他 > 详细

字符串截取的函数自定义

时间:2016-07-11 12:10:43      阅读:172      评论:0      收藏:0      [点我收藏+]
 

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/****************分割字符串 ****************/
CREATE function [dbo].[SplitString]
(
@Input nvarchar(max), @Separator nvarchar(max)=,, 
@RemoveEmptyEntries bit=1 )
returns @TABLE table 
(
[Id] int identity(1,1),
[Value] nvarchar(max)
) 
as
begin 
declare @Index int, @Entry nvarchar(max)
set @Index = charindex(@Separator,@Input)

while (@Index>0)
begin
set @Entry=ltrim(rtrim(substring(@Input, 1, @Index-1)))

if (@RemoveEmptyEntries=0) or (@RemoveEmptyEntries=1 and @Entry<>‘‘)
begin
insert into @TABLE([Value]) Values(@Entry)
end

set @Input = substring(@Input, @Index+datalength(@Separator)/2, len(@Input))
set @Index = charindex(@Separator, @Input)
end

set @Entry=ltrim(rtrim(@Input))
if (@RemoveEmptyEntries=0) or (@RemoveEmptyEntries=1 and @Entry<>‘‘)
begin
insert into @TABLE([Value]) Values(@Entry)
end

return
END




调用创建的sql函数
declare @s varchar(100),@sql varchar(1000),@split VARCHAR(10),@index INT


SET @split=|;
SET @index=1;
SET @s=|21|2106|;


select COUNT(*) from [dbo].[SplitString](@s, @split, 1)
select * from [dbo].[SplitString](@s, @split, 1)

 结果

技术分享

 

技术分享

 


字符串截取的函数自定义

原文:http://www.cnblogs.com/TzH-Sky/p/5659497.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!