in reply to Re: Merge CIDRs
in thread Merge CIDRs
There's a reason I put [1] there instead of your ".". Consider what happens when you have the following:1 while s/^(\d*)0\n\1.$/$1/mg || s/^(\d*)\n\1.*$/$1/mg;
The last two lines will be merged, creating10010 100100 100101
And your code will strip that final 0 from both lines, creating "1001". Wrong. You must ensure that it's a 1. Can't be "any".10010 10010
-- Randal L. Schwartz, Perl hacker
|
---|