作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试弄清楚如何让我的 perl 脚本同时接受字母的小写和大写变体。
例如。
my %channels = (a => 'test', b => 'test2', c => 'test3', d => 'test4', e => 'test5', f => 'test6', g => 'test7');
最佳答案
对于您的散列键( 单字母作为键 )尝试逻辑定义的运算符。
// => logical defined operator. If the left hand side is true give the result else if evaluate the right side.
print $channels{$input} // $channels{lc($input)};
关于perl - 如何让 Perl 识别小写和大写输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39031864/
我是一名优秀的程序员,十分优秀!