Typically, it's an issue between re.match and re.search. Match matches the beginning only and search checks the entire string. See the regular expression HOWTO for more details.

http://www.amk.ca/python/howto/regex

Also, Python comes with a handy program for testing regular expressions, Tools\Scripts\redemo.py.

CATEGORY: tutor