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


in reply to Re^2: qr// and user provided regex patterns...
in thread qr// and user provided regex patterns...

I suspect that qr was not intended to be used on an entire subsitution operator like that. I believe it should only be used on the regular expression portion (left side) of the subsitution. See perlop.

Here is an example script which uses s/// as a command-line option:
http://www.cpan.org/authors/id/F/FO/FORMAN/ren-regexp-1.5

Replies are listed 'Best First'.
Re^4: qr// and user provided regex patterns...
by misterMatt (Novice) on Aug 02, 2009 at 21:00 UTC
    so I pretty much will have to split it and evaluate it like this: eval("$text =~ s/$pa/$tx/$md"); It might be difficult splitting a regex that could contain multiple /'s. I'll have to adjust the program so the user enters the pattern, and replacement separately I guess.