in reply to •Re: Microsoft's .NET ate a piece of Perl 5?
in thread Microsoft's .NET ate a piece of Perl 5?
It is a reimplementation. It actually takes the regex and translates it into IL (Intermediate Language) byte code, which is in turned jitted into native machine code. It is pretty expensive to create a regex object, but they are reasonably fast at runtime (unless you recreate them every time inside a loop).