Help for this page

Select Code to Download


  1. or download this
    print join(',', unpack("C/C* v*", $testinput)), "\n";
    
  2. or download this
    my $testinput = pack('C/a* a* a*', 
                         (pack 'Cvs', 1, 3, -5), 
    ...
                         );
    
    print join(',', unpack("C/(Cvs)", $testinput)), "\n";