我有如下的哈希:
Failed to apply command "Last message related emails "$from" "$to" to issue created from email from "$from"
unknown command: Last message related emails "$from"
通常我们可以像hash = {"a": [{"c": "d", "e": "f"}] }
一样访问它。
但是,我有一个字符串:
hash["a"][0]["c"]
(这可能会根据用户输入而改变)
使用上面的字符串值有没有简单的方法来访问哈希?
答案 0 :(得分:2)
假设用户输入数组索引的数字和散列键的单词:
keys = string.scan(/(\d+)|(\w+)/).map do |number, string|
number&.to_i || string.to_sym
end
hash.dig(*keys) # => "d"
答案 1 :(得分:1)
你可以这样做:
hash = { 'a' => [{ 'c' => 'd', 'e' => 'f' }] }
string = "a[0]['c']"
def nested_access(object, string)
string.scan(/\w+/).inject(object) do |hash_or_array, i|
case hash_or_array
when Array then hash_or_array[i.to_i]
when Hash then hash_or_array[i] || hash_or_array[i.to_sym]
end
end
end
puts nested_access(hash, string) # => "d"
扫描输入字符串的字母,下划线和数字。其他一切都被忽略了:
puts nested_access(hash, "a/0/c") #=> "d"
puts nested_access(hash, "a 0 c") #=> "d"
puts nested_access(hash, "a;0;c") #=> "d"
错误的访问值将返回nil。
它也可以使用符号作为键:
hash = {a: [{c: "d", e: "f"}]}
puts nested_access(hash, "['a'][0]['c']")
它带来了对用户输入不太严格的优点,但它确实存在无法识别带空格的键的缺点。
答案 2 :(得分:0)
您可以使用gsub
将其他字符清理成数组并使用该数组访问您的哈希
hash = {"a": [{"c": "d", "e": "f"}] }
string = "a[0]['c']"
tmp = string.gsub(/[\[\]\']/, '').split('')
#=> ["a", "0", "c"]
hash[tmp[0].to_sym][tmp[1].to_i][tmp[2].to_sym]
#=> "d"