this is my patten: (TABLE[0-9]+)\(((?<=\()(.*?)(?=\)))[(?=\))\)]
this is the string i'm looking at: (TABLE3(1.6+TABLE1(2)))*TABLE2(1)*TABLE11(1)*(1.19017735023328)
what i get are:
- TABLE3(1.6+TABLE1(2)
- TABLE2(1)
- TABLE11(1)
i need the first one to be: TABLE3(1.6+TABLE1(2))
how can i do that?