Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I find multiple occurrences of a string within a string in Python? Consider this:

>>> text = "Allowed Hello Hollow"
>>> text.find("ll")
1
>>> 

So the first occurrence of ll is at 1 as expected. How do I find the next occurrence of it?

Same question is valid for a list. Consider:

>>> x = ['ll', 'ok', 'll']

How do I find all the ll with their indexes?

share|improve this question

8 Answers

up vote 13 down vote accepted
>>> import re
>>> text = "Allowed Hello Hollow"
>>> for m in re.finditer( 'll', text ):
...     print( 'll found', m.start(), m.end() )

ll found 1 3
ll found 10 12
ll found 16 18

Alternatively, if you don't want the overhead of RegularExpressions:

>>> text = "Allowed Hello Hollow"
>>> index = 0
>>> while index < len( text ):
...     index = text.find( 'll', index )
...     if index == -1:
...         break
...     print( 'll found at', index )
...     index += 2 # +2 because len('ll') == 2

ll found at  1
ll found at  10
ll found at  16

This works also for lists.

share|improve this answer
Is there no way to do it without using regular expressions? – user225312 Oct 6 '10 at 14:16
Not that I have any problem, but just curious. – user225312 Oct 6 '10 at 14:18
@poke: This is what I was looking for (wrt edit) – user225312 Oct 6 '10 at 14:23
lists don't have find. But it works with index, you just need to except ValueError instead of testing for -1 – aaronasterling Oct 6 '10 at 14:33
@Aaron: I was referring to the basic idea, of course you have to amend it a bit for lists (for example index += 1 instead). – poke Oct 6 '10 at 15:07
show 2 more comments

FWIW, here are a couple of non-RE alternatives that I think are neater than poke's solution.

The first uses str.index and checks for ValueError:

def findall(sub, string):
    """
    >>> text = "Allowed Hello Hollow"
    >>> tuple(findall('ll', text))
    (1, 10, 16)
    """
    index = 0 - len(sub)
    try:
        while True:
            index = string.index(sub, index + len(sub))
            yield index
    except ValueError:
        pass

The second tests uses str.find and checks for the sentinel of -1 by using iter:

def findall_iter(sub, string):
    """
    >>> text = "Allowed Hello Hollow"
    >>> tuple(findall_iter('ll', text))
    (1, 10, 16)
    """
    def next_index(length):
        index = 0 - length
        while True:
            index = string.find(sub, index + length)
            yield index
    return iter(next_index(len(sub)).next, -1)

To apply any of these functions to a list, tuple or other iterable of strings, you can use a higher-level function —one that takes a function as one of its arguments— like this one:

def findall_each(findall, sub, strings):
    """
    >>> texts = ("fail", "dolly the llama", "Hello", "Hollow", "not ok")
    >>> list(findall_each(findall, 'll', texts))
    [(), (2, 10), (2,), (2,), ()]
    >>> texts = ("parallellized", "illegally", "dillydallying", "hillbillies")
    >>> list(findall_each(findall_iter, 'll', texts))
    [(4, 7), (1, 6), (2, 7), (2, 6)]
    """
    return (tuple(findall(sub, string)) for string in strings)
share|improve this answer

For the list example, use a comprehension:

>>> l = ['ll', 'xx', 'll']
>>> print [n for (n, e) in enumerate(l) if e == 'll']
[0, 2]

Similarly for strings:

>>> text = "Allowed Hello Hollow"
>>> print [n for n in xrange(len(text)) if text.find('ll', n) == n]
[1, 10, 16]

this will list adjacent runs of "ll', which may or may not be what you want:

>>> text = 'Alllowed Hello Holllow'
>>> print [n for n in xrange(len(text)) if text.find('ll', n) == n]
[1, 2, 11, 17, 18]
share|improve this answer
Wow I like this. Thank you. This is perfect. – user225312 Oct 6 '10 at 16:39

For your list example:

In [1]: x = ['ll','ok','ll']

In [2]: for idx, value in enumerate(x):
   ...:     if value == 'll':
   ...:         print idx, value       
0 ll
2 ll

If you wanted all the items in a list that contained 'll', you could also do that.

In [3]: x = ['Allowed','Hello','World','Hollow']

In [4]: for idx, value in enumerate(x):
   ...:     if 'll' in value:
   ...:         print idx, value
   ...:         
   ...:         
0 Allowed
1 Hello
3 Hollow
share|improve this answer
Nice. Thank you! – user225312 Oct 6 '10 at 14:29
>>> for n,c in enumerate(text):
...   try:
...     if c+text[n+1] == "ll": print n
...   except: pass
...
1
10
16
share|improve this answer

Brand new to programming in general and working through an online tutorial. I was asked to do this as well, but only using the methods I had learned so far (basically strings and loops). Not sure if this adds any value here, and I know this isn't how you would do it, but I got it to work with this:

needle = input()
haystack = input()
counter = 0
n=-1
for i in range (n+1,len(haystack)+1):
   for j in range(n+1,len(haystack)+1):
      n=-1
      if needle != haystack[i:j]:
         n = n+1
         continue
      if needle == haystack[i:j]:
         counter = counter + 1
print (counter)
share|improve this answer

I think what you are looking for is string.count

"Allowed Hello Hollow".count('ll')
>>> 3

Hope this helps

share|improve this answer
I need the index. – user225312 Oct 6 '10 at 14:22

I've just played around with different non regex solutions and found out that using slices and also predefining lengths of sub strings you are looking for seems to be the most efficient.

Example:

fileHandle = open('SomeBook.txt', 'r')
textData = fileHandle.read()

allSearchStrings = [('and',3),('have',4),('him',3),('me',2),('you',3),('scary',5)]
found = list()

for charPosition in xrange(len(textData)):
    for searchString, searchStringLength in allSearchStrings:
        if searchString == textData[charPosition:charPosition + searchStringLength]: 
            found.append((searchString, charPosition))

An hour later, and a lot more experimenting and I found out that the above solution I proposed basically sucks. At first it seemed as an improvement as it got me to 3.4 seconds execution time from 6.6 seconds (1.2 MB file as I mentioned in the comments).

HOWEVER. this next solution can do the same job in just 0.04 seconds! (40 ms) (Inspired by poke's answer http://stackoverflow.com/a/3873422/1725693)

fileHandle = open('SomeBook.txt', 'r')
textData = fileHandle.read()

allSearchStrings = ['and','have','him','me','you','scary']
found = list()

for searchString in allSearchStrings:
    position = 0
    searchStringLength = len(searchString)
    while position < len(textData):
        position = textData.find(searchString, position)
        if position == -1: 
            break
        found.append((searchString, position))
        position += searchStringLength

So this is just a nice example how a bit different code can result in huge differences. For me. a more than 150 times speed improvement.

share|improve this answer
2  
"seems to be the most efficient". Did you time your solution? Use the timeit module to compare various approaches. – Martijn Pieters Oct 6 '12 at 20:08
I just figured I'm off topic! There are faster solutions here that find multiple occurrences of one single substring within target text. However in my project(where I needed to find multiple substrings in the same run) I just doubled my execution speed by moving all len() calculations outside the for loops and not using python string.find or string.index methods but just plain slice. 1.2 MB text file was processed in 3.4 seconds, which was an improvement from original 6.6 seconds (MacBookPro 2.53 GHz core2duo) – Ivan Kovacevic Oct 6 '12 at 20:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.