This is my regex: ((.+?(?=[(]))([(].+?[)]))
and a string template: "string(100)"
. from that i capture 3 groups. first is "string(100)"
2nd, is "string"
and third is "(100)"
. But i want to exclude brackets from third group, so i only have "100"
. I have seen all other similar posts, but couldn't succeed to adapt them to my problem.
I apologize for writing almost duplicate post, I just don't have much time to solve it myself.
Thanks in advance.