Package above does not work in threaded scripts probably due to usage of eval. I have made a simpler version of the same package. See below:
#!/usr/bin/perl -w
# (c) Saulius Petrauskas 2012
# Lentele atspausdina duomenis is eilutes.
package HexPrint;
use strict;
BEGIN {
use Exporter ();
our ($VERSION, @ISA, @EXPORT);
$VERSION = 0.01;
@ISA = qw(Exporter);
@EXPORT = qw(&HexPrint);
}
sub HexPrint {
my $str = shift;
my $i = 0;
my $s = '';
print "
+--------------------------------------------------+------------------
++
| 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | 0123456789ABCDEF
+|
+--------------------------------------------------+------------------
++
| ";
$str =~ s/(.)/printf("%02X ",ord($1));$s.=$1;if($i++>14){$s=~s|[^
+-~]|.|g;print " | $s |\n| ";$s='';$i=0;}/gse;
if($i > 0) { # print tail
$s=~s|[^ -~]|.|g;
print " "x(16-$i) . " | $s" . " "x(16-$i) . " |\n";
}
print "+--------------------------------------------------+-----------
+-------+\n";
}
1;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|