Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: tr///c doesn't seem to work as I expect

by almut (Canon)
on Sep 04, 2009 at 20:33 UTC ( [id://793588]=note: print w/replies, xml ) Need Help??


in reply to tr///c doesn't seem to work as I expect

Have you, maybe, overlooked the range " " (space) to "~" in the pattern?

  • Comment on Re: tr///c doesn't seem to work as I expect

Replies are listed 'Best First'.
Re^2: tr///c doesn't seem to work as I expect
by romandas (Pilgrim) on Sep 04, 2009 at 20:38 UTC
    Wow.. maybe. Is that a valid range? I thought it meant '-' itself. That must be it.
      From perlop:
      The character "-" is treated specially and therefore "\-" is treated +as a literal "-".


      The - indicates a range.

      if($data !~ /^[\ \-\~\007\012\015\035\036\037]*$/) { $data =~ tr/[\ \-\~\007\012\015\035\036\037]/ /cs; }
      is probably what you need.

        One small point:

        In the  tr operator, the  [ and  ] characters have no special meaning. (In a 'normal' regex, they define a character set.) In the expressison (as taken from the OP)
            $data =~ tr/[\ -\~\007\012\015\035\036\037]/ /cs;
        the  [ and  ] characters simply represent themselves. This has no effect in this particular case, however, since these characters are also included in the range  \ -\~ that includes, IIRC, all printable ASCII characters. (I think a space qualifies as a 'printable' character.)

        Thanks. Given the rest of the code (not shown), actually the range makes a lot more sense. It might not be 'correct', but I at least understand what's going on now. :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://793588]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-25 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found