Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Perl 编写脚本,但遇到了以下问题:我必须编辑 Windows 注册表中的键名。
我正在使用模块Win32::TieRegistry并在文档中搜索任何功能,但没有找到。我知道这应该很容易,但找不到这样做的方法。任何提示?
谢谢!
您不能更改散列中键的名称,但可以将值复制到新键并删除旧键。
$hash{new} = delete $hash{old};
假设实现是健全的,这对于绑定哈希应该是一样的。