my regex flaw exposes another?
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Ez az üzenet a következő szál része:
a teljes szál-fa dátum szerinti rendezve
David A. Sinck postázva
2002-03-06 21:07
Csatolmányok:
Üzenet email-ben
(text/plain)
Szerző:
Kevin Buettner
Dátum:
2002-03-06 21:26
UTC
Tárgy:
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