in reply to Re: stuck on regexp
in thread stuck on regexp

cheers guys.
how would i apply the maximum/minimum regexp to this expression:  if ($email !~ /.+\@.+\..+/) { ?

Replies are listed 'Best First'.
Re: Re: Re: stuck on regexp
by fglock (Vicar) on Aug 25, 2002 at 23:43 UTC

    Use  .{2,10} instead of  .+ (if I did understand your question)