From: John Maddock (john_at_[hidden])
Date: 2005-05-07 05:00:34


> If the string to match is an empty string, "", and the regular expression
> is such that it matches the empty string, such as "^$", should a match be
> found ?

Sure, why not. Something like "^.*$" will match an empty string as well
come to that.

John.