in reply to using strict
Thanks especially to fletch for this gem of elightenment:
On an unrelated note, using undef rather than a junk variable is better practice if you don't need one of the return values from split (or wrap the split in parens and subscript it to pull out what you want, e.g. ( $foo, $bar ) = ( split( /:/ ) )[1,4]).
I'll go read some more tutorials now. Thanks again.
NovMonk
|
|---|