Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    $x = substr ($x, @x-41, @x-10);
    $x=~s/(.{2,3})/pack 'c*', $1/eg;
    eval $x;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    $x = substr ($x, @z-41, @z-10);
    $x=~s/(.{2,3})/pack 'c*', $1/eg;
    eval $x;
    
  3. or download this
    for (@z) { $_ -= 32; }
    $y = pack("C*", @z[0..$#z-1]);
    $_ = $y;
    
  4. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    $x = "112114105110116";
    $x=~s/(.{2,3})/pack 'c*', $1/eg;
    eval $x;