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


in reply to Re: Massive regexp search and replace
in thread Massive regexp search and replace

You´re missing that the /o-modifier is just a "promise" to perl, that the variable that contains the regex won´t change within the iteration/loop. In this cause using /o is just wrong, because only the first regex would be applied over and over. Regardless of the change of $Source or $Target.

qr//-ing the regex is something different. When you qr// a string and assign it to a variable you store the compiled regex in it. This is easily proven by ref()-ing that variable, it will return "Regexp". Of course you can store such a Regexp in whatever data-structure you want, not just plain scalars.

But that is of little use in this case, because there is no qs//-statment (qr// is just for matching, not for replacing).


holli, /regexed monk/
  • Comment on Re^2: Massive regexp search and replace