2009/7/18 Jenn G. <practicalp...@gmail.com>: > next if /\/0$|^127\./; > > ( the regex means when meet something like 192.168.1.0/0 or 127.0.0.1 > it will be next.)
When you say, "it will be next" it sounds like you want it to be processed. The next keyword stops this loop iteration short, and continues at the next iteration. See "perldoc -f next" for a better explanation than I can write. Dan -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/