#!/usr/bin/perl -w use strict;my$data="4a75737420416e6f74686572205065726c204861636b6572"; +my$l=length$data;my$str="";for(my$x=0;$x<$l;$x+=2){$str=substr($data, +$x,2); print(chr(hex$str));}print"\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Tips
by beowulf (Scribe) on Mar 23, 2001 at 04:45 UTC | |
|
Re: Variation on a theme..
by satchboost (Scribe) on Mar 24, 2001 at 01:24 UTC |