Python - Regular expressions get numbers between parenthesis
问题 I need help creating a Regex to get numbers between parenthesis when my values are between word "PIC" and the "." I got this records and need to be able to extract values between () PIC S9(02)V9(05). I need this result "02 05" PIC S9(04). I need this result "04" PIC S9(03). I need this result "03" PIC S9(03)V9(03). I need this result "03 03" PIC S9(02)V9(03). I need this result "02 03" PIC S9(04). I need this result "04" PIC S9(13)V9(03). I need this result "13 03" I have try the below but it