Joining/Merging AoA
Hi Guys, I have a little complicated problem... I have two arrays @a = ( ['id', 'name', 'age'], ['1', 'Fred', '24'], ['2', 'Frank', '42'], ); @b = ( ['id', 'sex'], ['1', 'm' ], ['2', 'm'], ); I want to join these two AoA, based on i
Joining/Merging AoA
Hi Guys, I have a little complicated problem... I have two arrays @a = ( ['id', 'name', 'age'], ['1', 'Fred', '24'], ['2', 'Frank', '42'], ); @b = ( ['id', 'sex'], ['1', 'm' ], ['2', 'm'], ); I want to join these two AoA, based on i