Assuming I have this string: "abc{def{ghi{jkl}mno{pqr}st}uvw}xyz"
and I want to match this: "{def{ghi{jkl}mno{pqr}st}uvw}"
what should my regular expression look like..?
In other words, the match should start with "{" and end with "}", but it must have as many {'s as }'s in between.