Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: The utf8 flag and print()ing binary data

by grantm (Parson)
on Aug 31, 2010 at 21:49 UTC ( [id://858239]=note: print w/replies, xml ) Need Help??


in reply to The utf8 flag and print()ing binary data

I wasn't expecting this behaviour. I mistakenly thought that adding the :raw layer to the socket would set it up to accept any arbitrary bytes without worrying about what they were

The problem is that if the scalar has its utf8 flag set then it is not a string of bytes but a string of characters. The bytes required to represent those characters will depend on which encoding you want to use - hence the need to specify an encoding either with binmode or by explicitly calling encode.

Turning off the utf8 flag as you suggest is not a good solution since it will cause the characters to be sent as the bytes used by Perl's internal string representation. This internal representation is conceivably subject to change (probably unlikely), but more importantly it's not a standard format (it's almost but not exactly UTF8).

Replies are listed 'Best First'.
Re^2: The utf8 flag and print()ing binary data
by Anonymous Monk on Sep 01, 2010 at 12:43 UTC
    Thanks - that makes sense. Effectively my problem then is that the callers of my subroutine are passing in things other than bytes when they shouldn't be. As the code that calls my subroutine was written by me as well I shall have to give myself a good talking to!

Log In?
Username:
Password:

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

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

    No recent polls found