http://qs1969.pair.com?node_id=36473


in reply to RE: RE: RE: Caution - contents may settle in transit
in thread Caution - contents may settle in transit

Read perlop for the tr operator. It's the same thing... these operators ( q, qq, qw, s, tr, m, qx, qr ) can all be delimited by nearly any delimiter.
--
Casey
   I am a superhero.

Replies are listed 'Best First'.
RE: RE: RE: RE: RE: Caution - contents may settle in transit
by Anonymous Monk on Oct 12, 2000 at 23:00 UTC
    Well.. i've tried to understand it but my english seems to lack a bit... i've tryed : $res = tr'ou''hello'; thinking I would get "hellu" in $res but it gives me some error... could you give me a working exemple? Thanks a lot, I know I must be a pain for you. Sorry

      Is it just me, or does anyone smell a troll? ;-)

              - tye (but my friends call me "Tye")
        I'm beginning to think so...
        --
        Casey
           I am a superhero.
        
      my $variable = 'hello'; $variable =~ tr/o/u/; print $variable;
      You need to read perlop to figure out how to use tr and it's family.
      --
      Casey
         I am a superhero.
      
        Hi, thanks again casey! The only question left is the folowing : if $t="1234" and $_="abcd" and the script does an s/hello/$t/seee; what the "seee" do change? I think it does nothing but... can't find why it is in the script...