Hi,

I want to display the ipaddress lists from the array using perl.
The arrays can be like this : @list1 = (1..10) or @list2 = ('A'..'Z'). It can be printed as: list1 will be from 1 to 10 and list2 will be from A to Z.

Like this, i want to print the set of ipaddress.
The ipaddr array is: @ipaddr = ('192.168.30.1' .. '192.168.30.10').

How to print the ipaddresses from 192.168.30.1 to 192.168.30.10?
This is not the same approach followed in printing the numbers and chars. Regular expressions can be used. I tried my best. Anybody please help me.