On Oct  2 16:36, Mike Miller wrote:
> Anyone know about regular expressions in Python?

It's all in the re module, which is part of the standard library.  It's
not as natural to use as Perl, but it's just as powerful.

Figuring out the right regular expression is one of those things that
makes me appreciate the interactive shell.  Throw some test data in a
variable and keep modifying the regex until it matches the way you want
it.  Then just copy and paste the working regex into your script for
production use.

Nate