Most languages allow fixed-length or finite-length lookbehind. One notable exception is .NET, which allows the use of the * operator.
However, .NET regexs can already recognize balanced parentheses using named capture, which is not a regular language. Are regexs still regular with * in lookbehind? Extended answers for subexpressions other than * (for example, additional lookaround!) would also be appreciated.
tl;dr: Do regexs stay regular with * in lookbehind?