RE Help
David
wizzardx at gmail.com
Fri Sep 21 14:44:49 EDT 2007
More information about the Python-list mailing list
Fri Sep 21 14:44:49 EDT 2007
- Previous message (by thread): RE Help
- Next message (by thread): RE Help
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> data = "asdfasgSTARTpruyerfghdfjENDhfawrgbqfgsfgsdfg"
> x = re.compile('START.END', re.DOTALL)
This should work:
x = re.compile('START(.*)END', re.DOTALL)
- Previous message (by thread): RE Help
- Next message (by thread): RE Help
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list