Definition:
Back to the main index of this glossary
>>> import re
>>> list = ['cat', 'car', 'cap', 'cab', 'cad', 'can', 'Cancun', 'Katze', 'Auto', 'Deckel', 'Droschke', 'Flegel', 'Dose', 'Vogel', 'CHAT', 'VOITURE', 'CHAPEAU', 'CABINE', 'DAO', 'BIDON', 'BONBON']
>>> y = re.compile('a[dtn]')
>>> for x in list:
... if re.search(y,x):
... print x
...
cat
cad
can
Cancun
Katze
>>> y = re.compile('[aeiou][dtn]')
>>> for x in list:
... if re.search(y,x):
... print x
...
cat
cad
can
Cancun
Katze
Auto
Back to the main index of this glossary
