my regex flaw exposes another?
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Diese Nachricht ist Teil des folgenden Threads:
Der komplette Thread sortiert nach Datum
David A. Sinck am
2002-03-06 21:07
Anhänge:
Nachricht
(text/plain)
Autor:
Kevin Buettner
Datum:
2002-03-06 21:26
UTC
Betreff:
my regex flaw exposes another?
On Mar 6, 4:04pm, Mike wrote:
> [...] I was trying to exclude
> both the ".", "..", and a directory called "approved".
[...]
> next if ($file =~ /(^\.)(approved)/);
Try:
next if ($file =~ /^(\.\.?|approved)$/);
(Untested.)
Kevin