my regex flaw exposes another?
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
このメッセージは次のスレッドの一部です:
日付によるスレッドの仕分け
David A. Sinck 、
2002-03-06 21:07
添付ファイル:
Eメールのメッセージ
(text/plain)
著者:
Kevin Buettner
日付:
2002-03-06 21:26
UTC
題目:
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