Why doesn't this RE match?

Vlastimil Brom vlastimil.brom at gmail.com
Fri Feb 6 19:34:05 EST 2009


2009/2/7 Just Another Victim of the Ambient Morality <ihatespam at hotmail.com>:
>    I'm confused by this behaviour:
>
>
> import re
>
> regex = re.compile('foo')
> match = regex.match('whatfooever')
>
>
>    In my experience with regular expressions, regex should have found a
> match.  However, in this case regex.match() returns None.  Why is that?
> What am I missing?
>    Thank you...
>
>
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>

Try re.search() instead of match(), if nod only the beginning should
be checked for a match:
see
http://docs.python.org/library/re.html#matching-vs-searching

vbr



More information about the Python-list mailing list