Hello,
I'm a bit confused by regular expressions in Python. I tested the
following regex with http://re.dabase.com/, and it got a match there,
but I can't seem to get a match once I run this:
( example line from xlines: X= 0.0000 )
progX = re.compile('X=\s*\d+\.?\d*', re.I)
xparts = []
for val in xlines:
mX = progX.match(val)
Any ideas?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---