> data = "asdfasgSTARTpruyerfghdfjENDhfawrgbqfgsfgsdfg" > x = re.compile('START.END', re.DOTALL)
This should work: x = re.compile('START(.*)END', re.DOTALL) -- http://mail.python.org/mailman/listinfo/python-list
> data = "asdfasgSTARTpruyerfghdfjENDhfawrgbqfgsfgsdfg" > x = re.compile('START.END', re.DOTALL)
This should work: x = re.compile('START(.*)END', re.DOTALL) -- http://mail.python.org/mailman/listinfo/python-list