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
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…