Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a variable in python x, storing below values :

XYZ (APABC01)
ABC (ACACA18)
GHI (ABUAD21)

I want only the part which is inside the parenthesis as a list. I have used below regex and I almost got it correct :

re.findall('((.*?))',x)

Output is:

['APABC01)', 'ACACA18)', 'ABUAD21)']

My question is how can I eliminate the other parenthesis. I want the output like :

['APABC01', 'ACACA18', 'ABUAD21']

so that i can access my elements in the list for further usage


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

Use this regex:

import re

x = '''XYZ (APABC01)
ABC (ACACA18)
GHI (ABUAD21)
'''
print(re.findall(r'[(](.*?)[)]', x))
# ['APABC01', 'ACACA18', 'ABUAD21']

[(] : Character class that consists of only ( - the opening parens. You can also use ( - escaped opening parens instead.
(.*?) : Any character repeated 0 or more times, non-greedy (the minimum number of occurrences). The pattern is captured and returned as a list by re.findall.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...