Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: How scalars work (about numbers, text strings, and binary strings)

by ikegami (Patriarch)
on Oct 17, 2007 at 15:54 UTC ( [id://645485]=note: print w/replies, xml ) Need Help??


in reply to How scalars work (about numbers, text strings, and binary strings)

One way to keep binary strings seperate from text strings when you have to deal with both is to use hungarian notation.

my $bin_msg = ...; my $txt_msg = decode($encoding, $bin_msg);

See Making Wrong Code Look Wrong for more on the subject.

(I usually use "bytes" and "chars". I used "bin" and "txt" here to be in line with your diagram.)

  • Comment on Re: How scalars work (about numbers, text strings, and binary strings)
  • Download Code

Replies are listed 'Best First'.
Re^2: How scalars work (about numbers, text strings, and binary strings)
by Juerd (Abbot) on Oct 17, 2007 at 18:56 UTC

    That's a great idea, and I have done it in a few examples. I'd have to fight my old habits in order to do such a thing in actual code, though.

    Maybe it would be easier to do with single-letter prefixes. "u" for Unicode, perhaps. Feels better than "t" or "c" (I read "c" as "count", and would expect a number).

    Juerd # { site => 'juerd.nl', do_not_use => 'spamtrap', perl6_server => 'feather' }

Log In?
Username:
Password:

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

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

    No recent polls found