获取字符串指定字符的第n次出现位置
Posted 2019-11-11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取字符串指定字符的第n次出现位置相关的知识,希望对你有一定的参考价值。
create function uf_findx (@text nvarchar(max),@find_x varchar(200),@find_n int)
returns int
as
begin
--第n位无效参数返回0
if @find_n<1
return (0);
--字符串不含指定字符串返回0
else if CHARINDEX(@find_x,@text)=0
return (0);
else
begin
declare @index int =1,@count_nd int=1,@len int=1
--循环获取第n个指定字符串位置
while @find_n>=@count_nd
begin
select @index=CHARINDEX(@find_x,@text,@len)
set @count_nd=@count_nd+1
set @len=@index+1
--第n个指定字符串超过最大个数直接返回0
if @index=0
return (0);
end
end
return (@index);
end
以上是关于获取字符串指定字符的第n次出现位置的主要内容,如果未能解决你的问题,请参考以下文章