in reply to Re^2: Data type validation using regular expressions
in thread Data type validation using regular expressions
use strict; use warnings;
But I confess that I still don't trust -w on Windows (even though I now know it works perfectly well), because Windows ignores the first part of the shebang line. To test this, you can do:
#!/usr/path/which/does/not/exist/perl
and it'll still run Perl correctly. Granted this isn't a reason to stop using -w, which still does work as I mentioned, but it did make me suspicious of the whole top line for quite a while.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Data type validation using regular expressions
by naikonta (Curate) on May 28, 2007 at 02:03 UTC |