in reply to Java's RegExp Engine Faster Than Perl's?
Also, that article doesn't give any information of the test script whatsoever, for example:
Will/Should be slower thenwhile (<FILE>) { m/xyz/; }
$regex = qr/xyz/; while (<FILE>) { m/$regex/; }
Also, the regex that is used in that article seems (at first look) not a very well written regex...
|
|---|