I believe I had epiphany:
test = re.compile('MAT file (billing|carrier|log|util)' r'\\' '\d{8}
deleted')
is this correct?
_________
From: Yaniga, Frank
Sent: Wednesday, January 12, 2011 8:20 AM
To: 'tutor@pyt
I am determining a regular expression that can recognize the any of the
following strings:
MAT file log\20101225 deleted
MAT file billing\20101225 deleted
MAT file util\20101225 deleted
MAT file carrier\20101225 deleted
I begin by creating a regular expression object so that I can reuse it in
m