I have a ruby hash a as follows:
a = {
"module" => 'students',
"data" => [
{
"age" => 12,
"uid" => 'sd3wrew'
},
{
"age" => 10,
"uid" => '43e43r'
},
{
"age" => 10,
"uid" => 'ft34f'
}
]
}
I want to collect all uid from above hash and get an array like:
b = ['sd3wrew', '43e43r', 'ft34f']
so, I have code to do this, which loop through it.
b = []
a['data'].each do |e|
b << e['uid']
end
Is there anyway to achieve this result without looping each and much concise?