in reply to negative look-ahead is ignored
/^\d{4}\-\d{2}$/ or die; # match on end of string after \d{2}, or ... /^\d{4}\-\d{2}\s+/ or die; # match on whitespace delimiter # etc.
-M
Free your mind
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: negative look-ahead is ignored
by jeanluca (Deacon) on Feb 19, 2007 at 16:56 UTC | |
by Moron (Curate) on Feb 19, 2007 at 17:07 UTC | |
by bsdz (Friar) on Feb 19, 2007 at 23:18 UTC | |
by jeanluca (Deacon) on Feb 20, 2007 at 09:17 UTC |