my regex flaw exposes another?
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Esta mensagem é parte da seguinte discussão:
a lista completa das discussões ordenadas por data
David A. Sinck em
2002-03-06 21:07
Anexos:
Mensagem como email
(text/plain)
Autor:
Kevin Buettner
Data:
2002-03-06 21:26
UTC
Assunto:
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