This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author goatchurch
Recipients
Date 2007-05-18.20:12:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
import re
s = "Add.1, 2020 and Add.1, 2021-2023, 2025, 2028 and 2029 and Add.1) R"
r = "(?:\s|,|and|Add\S*?|Parts?|\([^\)]*\)|[IV\-\d]+)*$"
print "It's going to crash"
print re.search(r, s)
print "It hasn't crashed"
History
Date User Action Args
2007-08-23 14:53:55adminlinkissue1721518 messages
2007-08-23 14:53:55admincreate