I am in the process of trying to code a Perl script and this is my first time using the uc function. I have a section that gets the input and returns it to a if statement:
sub get_input {
return param('name'), param('serial'), param('model'), param('system');
}
Can I do something like:
param(uc('serial'))
I need to be able to get this done so I run a validation against the serial number input.