in reply to Re: Re: Variables in Regular Expressions?
in thread Variables in Regular Expressions?
Right from the perlop manpage:
Do a perldoc perlop to read all about trBecause the transliteration table is built at compile time, neither the SEARCHLIST nor the REPLACEMENTLIST are subjected to double quote interpolation. That means that if you want to use variables, you must use an eval(): eval "tr/$oldlist/$newlist/"; die $@ if $@; eval "tr/$oldlist/$newlist/, 1" or die $@;
|
|---|