I can\'t seem to find a good resource on this.. I am trying to do a simple re.place
I want to replace the part where its (.*?), but can\'t figure out the syntax on how t
The python docs are online, and the one for the re module is here. http://docs.python.org/library/re.html
To answer your question though, Python uses \1 rather than $1 to refer to matched groups.