Thanks John . How can I collect all devices in a array ?

-Sunita

-----Original Message-----
From: John W. Krahn [mailto:jwkr...@shaw.ca] 
Sent: Thursday, March 08, 2012 7:11 PM
To: Perl Beginners
Subject: Re: work with hexadecimal values

sunita.prad...@emc.com wrote:
> Hi

Hello,

> I have one range of hexadecimal numbers like : 415A till 415F .
> I need to find all other numbers between this 2 . Is there any Perl
> function which will help to find all numbers or any other way in Perl ?

$ perl -e'printf "%X\n", $_ for hex( "415A" ) .. hex( "415F" )'
415A
415B
415C
415D
415E
415F



John
-- 
Any intelligent fool can make things bigger and
more complex... It takes a touch of genius -
and a lot of courage to move in the opposite
direction.                   -- Albert Einstein

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/




--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to