web-dev-qa-db-fra.com

Comment trouver toutes les positions d'une chaîne dans une autre chaîne

Comment puis-je trouver toutes les positions avec patindex dans une table ou une variable?

declare @name nvarchar(max)
set @name ='ALi reza dar yek shabe barani ba yek  '
  + 'dokhtare khoshkel be disco raft va ALi baraye'
  + ' 1 saat anja bud va sepas... ALi...'
select patindex('%ALi%',@name) as pos 

Cela renvoie 1 mais je veux tous les résultats, par exemple:

pos
===
  1
 74
113
11
coditori
declare @name nvarchar(max)
set @name ='ALi reza dar yek shabe barani ba yek  dokhtare khoshkel be disco raft va ALi baraye 1 saat anja bud va sepas... ALi...'

Declare @a table (pos int)
Declare @pos int
Declare @oldpos int
Select @oldpos=0
select @pos=patindex('%ALi%',@name) 
while @pos > 0 and @oldpos<>@pos
 begin
   insert into @a Values (@pos)
   Select @oldpos=@pos
   select @pos=patindex('%ALi%',Substring(@name,@pos + 1,len(@name))) + @pos
end

Select * from @a

Pour le rendre réutilisable, vous pouvez l'utiliser dans une fonction de table pour l'appeler comme:

Select * from  dbo.F_CountPats ('ALi reza dar yek shabe barani ba yek  dokhtare khoshkel be disco raft va ALi baraye 1 saat anja bud va sepas... ALi...','%ALi%')

La fonction pourrait ressembler à ceci

Create FUNCTION [dbo].[F_CountPats] 
(
@txt varchar(max),
@Pat varchar(max)
)
RETURNS 
@tab TABLE 
(
 ID int
)
AS
BEGIN
Declare @pos int
Declare @oldpos int
Select @oldpos=0
select @pos=patindex(@pat,@txt) 
while @pos > 0 and @oldpos<>@pos
 begin
   insert into @tab Values (@pos)
   Select @oldpos=@pos
   select @pos=patindex(@pat,Substring(@txt,@pos + 1,len(@txt))) + @pos
end

RETURN 
END

GO
9
bummi

Je pense que ce sera légèrement plus efficace que la méthode de bouclage que vous avez choisie ( quelques preuves ici ), et certainement plus efficace que le CTE récursif:

CREATE FUNCTION dbo.FindPatternLocation
(
    @string NVARCHAR(MAX),
    @term   NVARCHAR(255)
)
RETURNS TABLE
AS
    RETURN 
    (
      SELECT pos = Number - LEN(@term) 
      FROM (SELECT Number, Item = LTRIM(RTRIM(SUBSTRING(@string, Number, 
      CHARINDEX(@term, @string + @term, Number) - Number)))
      FROM (SELECT ROW_NUMBER() OVER (ORDER BY [object_id])
      FROM sys.all_objects) AS n(Number)
      WHERE Number > 1 AND Number <= CONVERT(INT, LEN(@string)+1)
      AND SUBSTRING(@term + @string, Number, LEN(@term)) = @term
    ) AS y);

Exemple d'utilisation:

DECLARE @name NVARCHAR(MAX);

SET @name = N'ALi reza dar yek shabe barani ba yek'
    + '  dokhtare khoshkel be disco raft va ALi baraye '
    + '1 saat anja bud va sepas... ALi...';

SELECT pos FROM dbo.FindPatternLocation(@name, 'ALi');

Résultats:

pos
---
  1
 74
113

Si vos chaînes seront plus longues que 2 Ko, utilisez sys.all_columns au lieu de sys.all_objects. Si plus de 8K, ajoutez une jointure croisée.

15
Aaron Bertrand

- CTE récursif

with cte as
(select 'ALi reza dar yek shabe barani ba yek  dokhtare khoshkel be disco raft va ALi baraye 1 saat anja bud va sepas... ALi...' as name
), 
pos as
(select patindex('%ALi%',name) pos, name from cte
union all
select pos+patindex('%ALi%',substring(name, pos+1, len(name))) pos, name from pos
where patindex('%ALi%',substring(name, pos+1, len(name)))>0
)
select pos from pos
2
msi77

J'adore la réponse d'Aaron Bertrand. Bien que je ne le comprenne pas complètement, il a l'air vraiment élégant.

Dans le passé, j'ai rencontré des problèmes d'autorisations lors de l'utilisation de sys.objects. Combiné avec la nécessité pour moi de dépanner le code, j'ai trouvé une variante du code d'Aaron et je l'ai ajouté ci-dessous.

Voici ma procédure:

CREATE PROCEDURE dbo.FindPatternLocations
-- Params
@TextToSearch nvarchar (max),
@TextToFind nvarchar (255)

AS
BEGIN

    declare @Length int
    set @Length = (Select LEN(@TextToSearch))

    declare @LengthSearchString int
    set @LengthSearchString = (select LEN (@TextToFind))

    declare @Index int
    set @Index=1

    create table #Positions (
    [POSID] [int] IDENTITY(0,1) NOT FOR REPLICATION NOT NULL,
    POS int
    )

    insert into #Positions (POS) select 0 -- to return a row even if no findings occur

        set @Index = (select charindex(@TextToFind, @TextToSearch, @Index))
                    if @Index = 0 goto Ende -- TextToFind is not in TextToSearch

        insert into #Positions (POS) select @Index


        set @Index = @Index + @LengthSearchString

while @Index <= @Length - @LengthSearchString   
    Begin
            set @Index = (select charindex(@TextToFind, @TextToSearch, @Index) )
            if @Index = 0 goto Ende -- no findings anymore
            insert into #Positions (POS) select @Index
            set @Index = @Index + @LengthSearchString
    end
Ende:
if (select MAX(posid) from #Positions) > 0 delete from #Positions where POSID = 0 -- row is not needed if TextToFind occurs
select * from #Positions
END
GO

La valeur MAX(posid) est également le nombre de correspondances trouvées.

0
Nils
Declare @search varchar(5)
    sET @search='a'
    Declare @name varchar(40)
    Set @name='AmitabhBachan'
    Declare @init int
    Set @init=1
    Declare @hold int
    Declare @table table (POSITION Int)
    While( @init<= LEn(@name))
    Begin
   Set @hold=(Select CHARINDEX(@search,@name,@init))
   If (@hold!=0)
   BEgin 
   --Print @hold
   Insert into @table
   Select @hold
   Set @init=@hold+1
   End 
   Else
   If (@hold=0)
   BEgin
   Break
   End
  End
  Select * from @table
0
Raghu

Ceci est un code simple basé sur réponse d'Aaron qui:

  • Non limité à la taille de sys.all_objects
  • Ne manquez pas le dernier "X"

CODE:

DECLARE @termToFind CHAR(1) = 'X'
DECLARE @string VARCHAR(40) = 'XX XXX  X   XX'

SET @string += '.' --Add any data here (different from the one searched) to get the position of the last character

DECLARE @stringLength BIGINT = len(@string)

SELECT pos = Number - LEN(@termToFind)
FROM (
    SELECT Number
        , Item = LTRIM(RTRIM(SUBSTRING(@string, Number, CHARINDEX(@termToFind, @string + @termToFind, Number) - Number)))
    FROM (
        --All numbers between 1 and the lengh of @string. Better than use sys.all_objects
        SELECT TOP (@stringLength) row_number() OVER (
                ORDER BY t1.number
                ) AS N
        FROM master..spt_values t1
        CROSS JOIN master..spt_values t2
        ) AS n(Number)
    WHERE Number > 1
        AND Number <= CONVERT(INT, LEN(@string))
        AND SUBSTRING(@termToFind + @string, Number, LEN(@termToFind)) = @termToFind
    ) AS y

[~ # ~] résultat [~ # ~]

pos
--------------------
1
2
4
5
6
9
13
14

(8 row(s) affected)
0
JotaPardo

Désolé les gars de venir si tard, mais j'aimerais rendre les choses plus faciles pour les gens qui veulent développer cela. Je regardais chacune de ces implémentations, j'ai pris celle qui me semblait la meilleure (Aaron Bertrand), je l'ai simplifiée et voilà, vous avez le "template". Fais-en bon usage.

CREATE FUNCTION dbo.CHARINDICES (
    @search_expression NVARCHAR(4000),
    @expression_to_be_searched NVARCHAR(MAX)
) RETURNS TABLE AS RETURN (
    WITH tally AS (
        SELECT Number = ROW_NUMBER() OVER (ORDER BY [object_id])
        FROM sys.all_objects)
    SELECT DISTINCT n = subIdx -- (4) if we don't perform distinct we'll get result for each searched substring, and we don't want that
    FROM 
        tally 
        CROSS APPLY (SELECT subIdx = CHARINDEX(@search_expression, @expression_to_be_searched, Number)) x -- (2) subIdx is found in the rest of the substring 
    WHERE 
        Number BETWEEN 1 AND LEN(@expression_to_be_searched) -- (1) run for each substring once
        AND SubIdx != 0  -- (3) we care only about the indexes we've found, 0 stands for "not found"
)

SELECT CHARINDEX('C', 'BACBABCBABBCBACBBABC')
SELECT * FROM dbo.CHARINDICES('C', 'BACBABCBABBCBACBBABC')

Juste comme référence - vous pouvez en dériver d'autres comportements, comme développer PATINDEX ():

CREATE FUNCTION dbo.PATINDICES (
    @search_expression NVARCHAR(4000) = '%[cS]%',
    @expression_to_be_searched NVARCHAR(MAX) = 'W3Schools.com'
) RETURNS TABLE AS RETURN (
    WITH tally AS (
        SELECT num = ROW_NUMBER() OVER (ORDER BY [object_id])
        FROM sys.all_objects)
    SELECT DISTINCT n = subIdx + num - 1
    FROM 
        tally 
        CROSS APPLY (SELECT numRev = LEN(@expression_to_be_searched) - num + 1) x
        CROSS APPLY (SELECT subExp = RIGHT(@expression_to_be_searched, numRev)) y
        CROSS APPLY (SELECT subIdx = PATINDEX(@search_expression, subExp)) z
    WHERE 
        num BETWEEN 1 AND LEN(@expression_to_be_searched)
        AND SubIdx != 0
)

SELECT PATINDEX('%[cS]%', 'W3Schools.com')
SELECT * FROM dbo.PATINDICES('%[cS]%', 'W3Schools.com')
0