I'm currently trying to figure out how I can get my perl script to accept both a lowercase and a uppercase version of a letter.
Example.
my %channels = (a => 'test', b => 'test2', c => 'test3', d => 'test4', e => 'test5', f => 'test6', g => 'test7');
So when I want to enter a test, I can either do or A, and he will take it
To calculate the problem:
When running the script, I had a problem when you needed to enter a if you need a test. This is all good for me, but other people wanted capital A to be made instead. I am trying to give them the opportunity to do so.
Thank you all
source
share