http://qs321.pair.com?node_id=431683


in reply to Re: sorting ip octets
in thread sorting ip octets

thanks it works but I open it from a txt file and read it line by line.

thank you for the help

Replies are listed 'Best First'.
Re^3: sorting ip octets
by Tanktalus (Canon) on Feb 16, 2005 at 19:08 UTC

    Normally, we recommend reading files and dealing with them line-by-line. That doesn't really work for sorting. So just read your text file into @ips, chomping as appropriate, and then sort as above. All I was helping you with was the sorting of ip octets, not the reading of a file or writing to a file. Those are left as an excersise for the reader. (I never knew how much fun it was to say that until I left university... :-})

      I appreciate all the help you have given me.