Re: [analog-help] what am I doing wrong with REGEXP?

2000-11-06 Thread Stephen Turner
On Sat, 4 Nov 2000, Massimo Mezzini wrote: Hi; for the (very) little I know about REGEXP, the following line HOSTALIAS REGEXP:^216\.[0-5]\.*\.* digex.net should be able to catch all the IP in the range 216.0.0.0 - 216.5.255.255 and nothing else. You really need to learn regexps

Re: [analog-help] what am I doing wrong with REGEXP?

2000-11-06 Thread Stephen Turner
On Mon, 6 Nov 2000, Stephen Turner wrote: On Sat, 4 Nov 2000, Massimo Mezzini wrote: HOSTALIAS REGEXP:^216\.[0-5]\.*\.* digex.net should be able to catch all the IP in the range 216.0.0.0 - 216.5.255.255 and nothing else. Replace all instances of \.* by \..* in your examples

Re: [analog-help] what am I doing wrong with REGEXP?

2000-11-06 Thread Massimo Mezzini
Hello Stephen; On Mon, 6 Nov 2000, Stephen Turner wrote: On Sat, 4 Nov 2000, Massimo Mezzini wrote: HOSTALIAS REGEXP:^216\.[0-5]\.*\.* digex.net should be able to catch all the IP in the range 216.0.0.0 - 216.5.255.255 and nothing else. Replace all instances of \.* by \..* in

Re: [analog-help] what am I doing wrong with REGEXP?

2000-11-06 Thread Jeremy Wadsack
Massimo Mezzini wrote: You really need to learn regexps before trying to use them. :) I know, but I thought I was through with REGEXP 101. Any tutorial to suggest? If you've got Perl on your system, try 'perldoc perlre'. Jeremy Wadsack Wadsack-Allen Digital Group

Re: [analog-help] what am I doing wrong with REGEXP?

2000-11-06 Thread Stephen Turner
On Mon, 6 Nov 2000, Jeremy Wadsack wrote: Massimo Mezzini wrote: I know, but I thought I was through with REGEXP 101. Any tutorial to suggest? If you've got Perl on your system, try 'perldoc perlre'. Hmmm, that's hardly a tutorial. Chapter 7 (I think) of "Learning Perl" is very