String text =" this xx(yyzz(iijj))qq((kkll)(gghh)) is there any way in which i could match \"xx(yyzz(iijj))\" and \"qq((kkll)(gghh))\" separately using";
Text = this xx(yyzz(iijj))qq((kkll)(gghh)) is there any way in which i could match "xx(yyzz(iijj))" and "qq((kkll)(gghh))" separately using
Regex = \(([^()]*+|\([^()]*+\))*\)
entire match: '(yyzz(iijj))', from 8 to 20
- group(1) =
entire match: '((kkll)(gghh))', from 22 to 36
- group(1) =
entire match: '(yyzz(iijj))', from 80 to 92
- group(1) =
entire match: '((kkll)(gghh))', from 101 to 115
- group(1) =