Quantcast
Channel: Finding the contents of parenthesis - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Padraic Cunningham for Finding the contents of parenthesis

Considering it is always in the form (d. xxxxxxxxxxxxx) and your regex and the answers supplied catch anything in the format (r. then anything) unless you will have cases where you have an (r. followed...

View Article



Answer by user2555451 for Finding the contents of parenthesis

re.match always matches from the start of the string. From the docs:re.match(pattern, string, flags=0)If zero or more characters at the beginning of string match the regular expression pattern, return...

View Article

Answer by nu11p01n73R for Finding the contents of parenthesis

Use search instead of matchfor test in tests:... m = re.search ("\(d.(.*)\)", test)... if m:... print(m.groups())... (' October 9, 1999',)(' December 28, 1991',)Why match wont work?Tha match searches...

View Article

Finding the contents of parenthesis

I have a few thousand blocks of text which may or may not contain a date of death for the person in the record, which is always in the form:(d. xxxxxxxxxxxxx)that is that it starts with parenthesis,...

View Article
Browsing latest articles
Browse All 4 View Live


Latest Images