I am working with the regex library in Python. I'm currently creating a condition which I want to bypass below sample string because I read a file line by line.
I would like to bypass the string if I found a format like:
03/27/2016 07:58:17.442
Sample string to bypass:
03/27/2016 07:58:17.442 U:Event: Current Process Recipe Name = PFCA-800Pulse.prc [LLA_01] [2016-03-27_003_A1B]
My current code:
self.matchObj = re.match( r'([0-9])\w+', l)
if not self.matchObj:
#do the following code here