Trate de añadir la función
/*
Example:
SELECT dbo.CHARINDEX2('a', 'abbabba', 3)
returns the location of the third occurrence of 'a'
which is 7
*/
CREATE FUNCTION CHARINDEX2
(
@TargetStr varchar(8000),
@SearchedStr varchar(8000),
@Occurrence int
)
RETURNS int
AS
BEGIN
DECLARE @pos INT, @counter INT, @ret INT
set @pos = CHARINDEX(@TargetStr, @SearchedStr)
set @counter = 1
if @Occurrence = 1 set @ret = @pos
else
begin
while (@counter < @Occurrence)
begin
select @ret = CHARINDEX(@TargetStr, @SearchedStr, @pos + 1)
set @counter = @counter + 1
set @pos = @ret
end
end
RETURN(@ret)
end
después hacer referencia a la función como tal ...
SELECT SUBSTRING('/one/two/three/whatever/testing', 0, dbo.CHARINDEX2('/', '/one/two/three/whatever/testing', 3))
Salida here un artículo para ver mejor :)
muy bueno ... cualquier cosa que podamos hacer para que funcione con esta cadena también '/ one/two/three% 20rest/whatever/testing .. gracias. – o365spo
@cyberpine, no estoy seguro de a qué te refieres. Por lo que puedo decir, funciona correctamente con la cadena en su comentario: http://data.stackexchange.com/stackoverflow/query/60986/find-3rd-instance-of –