in reply to Re: Variables in Regular Expressions?
in thread Variables in Regular Expressions?
So basically, is there any way to get this to work? Thanks for your help.# the alphabet $a = "abcdefghijklmnopqurtuvwxyz"; # i've discovered that a represents T in the cryptogram, for example $b = "T E "; $c = "the text i want to decipher"; $c =~ tr/$a/$b/;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Variables in Regular Expressions?
by busunsl (Vicar) on Apr 25, 2001 at 23:55 UTC |