I\'m having a hell of a time trying to transfer my experience with javascript regex to Python.
I\'m just trying to get this to work:
print(re.match(
re.match implicitly adds ^ to the start of your regex. In other words, it only matches at the start of the string.
re.match
^
re.search will retry at all positions.
re.search
Generally speaking, I recommend using re.search and adding ^ explicitly when you want it.
http://docs.python.org/library/re.html