Help for this page

Select Code to Download


  1. or download this
    my $p=pack "V/a*", $s;
    my $l=length $p;
    
  2. or download this
    use Encode qw/encode/;
    my $p=pack "V/a*", encode('utf8',$s);
    my $l=bytes::length $p;
    # using bytes::length just to be sure, $p shouldn't have its utf8 flag
    + on, but in case it does...