Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
import re
mysentence = 'have a dog a cute cat and a big cow '
myanimal = 'dog', 'cat' , 'cow'
print re.finditer('have(.*?)myanimal',mysentence)

this is not working , as my animal strings are not taken . Any idea to make it work ?

share|improve this question
1  
Can you share some more detail what do you expect as output here.. – avasal Dec 9 '11 at 5:15
output [have a dog] – user1081713 Dec 9 '11 at 5:21

2 Answers

>>> import re
>>> mysentence = 'have a dog a cute cat and a big cow '
>>> myanimal = 'dog', 'cat' , 'cow'
>>> m = re.match(r'have a (?:%s)' % '|'.join(map(re.escape, myanimal)), mysentence)
>>> m.group()
'have a dog'
share|improve this answer

Q> my animal strings are not taken

As you have myanimal inside the quotations ('have(.*?)myanimal') it would be considered as part of the string, it's actual values won't be substituted.

A regex needs to be formed, and since myanimal is list:

for animal in myanimal:
    regex = re.compile('have a .*%s'%animal)
    for m in re.finditer(regex, mysentence):
        print m.group()

output:
have a dog
have a dog a cute cat
have a dog a cute cat and a big cow

May be this could help....

share|improve this answer
how to correct it ? – user1081713 Dec 9 '11 at 5:34
1  
updated the answer.. have a look – avasal Dec 9 '11 at 6:17

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.