I'm not sure exactly what feed back you are looking for on this code, but I have a couple of comments:
Which will error under strictures and who knows what it will do otherwise. Instead, make sure you quote the words:validate_fields(EACH, P_DLRUOM);
or:validate_fields('EACH', 'P_DLRUOM');
validate_fields( qw( EACH P_DLRUOM ) );
Then you have a better idea of what you are passing around and you don't have to rely on the order in which they are passed.foo( { arg1 => 'val1', arg2 => 'val2' } ); sub foo{ my $arg_ref = shift; # do some stuff with $arg_ref->{arg1} and # $arg_ref->{arg_2} ... return; }
perl -e 'split//,q{john hurl, pest caretaker}and(map{print @_[$_]}(joi +n(q{},map{sprintf(qq{%010u},$_)}(2**2*307*4993,5*101*641*5261,7*59*79 +*36997,13*17*71*45131,3**2*67*89*167*181))=~/\d{2}/g));'
In reply to Re^3: Need help with Validation script
by agianni
in thread Need help with Validation script
by ssmith001
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |