Perl,如何将所有哈希值小写?
我需要将(一级)哈希复制到新哈希,所有值均小写。
你知道一个聪明的方法吗(只是为了避免丑陋的foreach...;-)
I need to copy a (one-level) hash to a new one, with all values lowercased.
Do you know a smart method (just to avoid an ugly foreach... ;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是使用
map
的单行:This is a one liner using
map
:只是为了好玩,用不同的角度来看待同一件事:
是的,
keys
和values
函数是 保证 按相应的顺序生成它们的列表,前提是您在调用一个和另一个之间不修改它们正在处理的哈希值。Just for fun, a different angle to look at the same thing:
And yes, the
keys
andvalues
functions are guaranteed to produce their lists in corresponding order, provided you don't modify the hash they're working on between calling one and the other.只是另一种方式(现在我知道你想要哈希的副本,这不太酷)。
Just another way (that's not as cool now that I know you want a copy of the hash).
本着有趣的精神,这里有一个使用有点晦涩的
each
函数的解决方案。 (别相信我以前用过它。)In the spirit of fun, here's a solution using the somewhat obscure
each
function. (Don't believe I have ever used it before.)