Although it's true that regular expressions are incapable of counting unboundedly, you can still use backreferences to get around this problem, in a limited fashion. Specifically, you can find matching braces in an indented source code file (I'm picturing a C- or Java-like language) by looking at the indentation level. I realize this isn't truly bracket-matching, but it is good enough for many problems in the same vein as this one.
The regex:
(?s)^(\s*+)while[^{\n]*(?:\n[^{\n]*)?({.*?^\1})
the while part is where the name of your code block would go (in this case, it would match the innermost block in the example:
int bla = 2;
{
if (levitating)
{
while (true) {
happy();
}
}
}
To match a bare block (like the outermost block above), (?s)^(\s*+)({.*?^\1}) will do. In both cases, the block with brackets is stored in backreference 2.