hello monks,
i recently wondered why some of my utf8 strings missed their utf8 flag. i found the point where they were used
as arguments to Digest::MD5::md5_hex.
$ perl -wle'
use Digest::MD5 qw(md5_hex);
use Devel::Peek;
use Encode;
my $string = "äöü";
Encode::_utf8_on($string);
Dump $string;
my $md5 = md5_hex($string);
Dump $string
'
SV = PV(0x8153b00) at 0x8153684
REFCNT = 1
FLAGS = (PADBUSY,PADMY,POK,pPOK,UTF8)
PV = 0x8174d48 "\303\244\303\266\303\274"\0 [UTF8 "\x{e4}\x{f6}\x{fc
+}"]
CUR = 6
LEN = 8
SV = PVMG(0x81ee3e0) at 0x8153684
REFCNT = 1
FLAGS = (PADBUSY,PADMY,SMG,POK,pPOK)
IV = 0
NV = 0
PV = 0x8174d48 "\344\366\374"\0
CUR = 3
LEN = 8
MAGIC = 0x81cbca0
MG_VIRTUAL = &PL_vtbl_utf8
MG_TYPE = PERL_MAGIC_utf8(w)
MG_LEN = 3
shouldn't the function leave its arguments alone?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.