http://www.perlmonks.org?node_id=669243


in reply to Re^2: 5.10.0 regex slowdown
in thread 5.10.0 regex slowdown

It would neat to see the re=debug dump of your pattern, piped into grep TRIE to see whats going on. I suspect that you can do it easiest with perl -c on code with a use re 'debug'.

perl -c -Mre=debug SCRIPT 2>&1 | grep TRIE

Should do it.

Actually if you could grep for JUMP and JMP too it would be good.

---
$world=~s/war/peace/g