1. Home
  2. Computing & Technology
  3. Python

Python Regular Expressions Examples - the Dot, Full Stop, or Period

From , former About.com Guide

Definition:
>>> import re
>>> list = ['cat', 'car', 'cap', 'cab', 'cad', 'can', 'Katze', 'Auto',
'Deckel', 'Droschke', 'Flegel', 'Dose', 'CHAT', 'VOITURE', 'CHAPEAU',
'CABINE', 'DAO', 'BIDON']
>>> y = re.compile('c.b')
>>> for x in list:
...     if y.match(x):
...             print x
...
cab

Back to the main index of this glossary
Explore Python
About.com Special Features

Holiday Central

What to eat, where to go, fun things to do and how to save money on the perfect gifts. More >

Family Tech Center

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

  1. Home
  2. Computing & Technology
  3. Python
  4. Regular Expressions
  5. Python RegEx Examples
  6. Character Markers
  7. Python RegEx - Python Regular Expressions - Examples - the Dot, Full Stop, or Period

©2009 About.com, a part of The New York Times Company.

All rights reserved.