<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>It's not an uncommon problem, but it's a messy one. And it's basically an application decision. </div><div><br></div><div>The module you need is Encode, and what you probably need is</div><div><br></div><div>my $encoded = Encode::encode('utf8', $utf8_string);</div><div><br></div><div>which translates the string that's in UTF8 and which you can't print, into a set of bytes in UTF8, which you can. That stops the print error. However, this is for printing or writing over a network connection, and you might need a different encoding depending on your protocol. The Encode module can do most any encoding you like or need, and many that seem ridiculous. </div><div><br></div><div>In the case of UTF8, and only because internally Perl uses UTF8, that sets a special flag that effectively stops Perl from giving wide character errors. But this is highly confusing special behaviour, and it's often worth testing Perl with non-UTF8 data printing/communications to flush out these issues. </div><div><br></div><div>The problems are worse if you don't know what your strings are to begin with. It's best to help your app by making everything UTF8 (internally) as soon as possible, assuming it isn't already. There is no way to tell. reliably, whether a piece of random data really is UTF8 text as that's really down to how it is supposed to be interpreted. </div><div><br></div><div>--S</div><br><div><div>On 2012-10-15, at 1:59 PM, Fulko Hew wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><font face="courier new,monospace">I have a problem </font><font face="courier new,monospace"><font face="courier new,monospace">(so what else is new!) </font>that I haven't yet found a solution to ...<br><br>In my app, I receive strings, massage them, and 'push_write" them to an </font><font face="courier new,monospace"><font face="courier new,monospace">AnyEvent socket.<br>

<br></font></font><font face="courier new,monospace">Occasionaly, my app receives a unicoded string...<br>so when the write happens, </font><font face="courier new,monospace">Perl (inside the AnyEvent module)<br>dies with the error:<br>

<br>   Wide character in subroutine entry at ...<br><br>What I haven't figured out yet is, how to coerce the character string into<br>an octet string (for the rest of its life, ie. in subsequent modules)<br>so the warning/dying goes away.<br>

<br>TIA<br>Fulko<br><br></font>
_______________________________________________<br>toronto-pm mailing list<br><a href="mailto:toronto-pm@pm.org">toronto-pm@pm.org</a><br>http://mail.pm.org/mailman/listinfo/toronto-pm<br></blockquote></div><br></body></html>