Help for this page

Select Code to Download


  1. or download this
        print $string;
  2. or download this
        print map {chr} @array;
  3. or download this
        print pack "C*", @array;
  4. or download this
        @array= unpack "C*", $string;
  5. or download this
        @array = <DATA>;
  6. or download this
        @array= unpack "C*", do { local($/); <DATA> };