Hexadecimal-to-text converter
1 2 #!/usr/bin/perl -wn 3 use strict; 4 s/\s//g; 5 print chr hex $1 while /([[:xdigit:]]{2})/g; 6 print "\n";
DZone Snippets > Minimiscience > hexadecimal
13393 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 #!/usr/bin/perl -wn 3 use strict; 4 s/\s//g; 5 print chr hex $1 while /([[:xdigit:]]{2})/g; 6 print "\n";