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 ?
|
|
|||
|
|
|
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:
May be this could help.... |
|||||||
|