Igor Sutton wrote:
I have an update:

my @data = $string =~ m/0x(\d{2})/g;

my @data = $string =~ m/0x(\S{2}),?/g;

Now I think it is right :)

my @data = $string =~ m/=0x(..)/g;

:)

Rob

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to