http://bugzilla.spamassassin.org/show_bug.cgi?id=4621
------- Additional Comments From [EMAIL PROTECTED] 2005-10-11 21:02 ------- Ok, Tom, here's another shot at it. See what this script does: use bytes; use HTML::Entities; use Encode; $uri = "http://test.com?number=9&part=1.5&a=2"; $a = decode_entities($uri); $a = encode_utf8(pack('C0A*', $a)); print "string length " . length($a) . "\n"; print "prints as '$a'\n"; $_ = $a; if (/[A-Z]{6}\.(?:BIZ|INFO|biz|info)/) { print "matched and didn't die\n"; } else { print "didn't match but didn't die\n"; } ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
