I have an array @arr as:
aa bb cc
dd ee ff
gg hh kk
tt yy uu
I need to extract the second coulmn from this & push it to another array called @brr so that it contains only
bb
ee
hh
yy
aa bb cc
dd ee ff
gg hh kk
tt yy uu
I need to extract the second coulmn from this & push it to another array called @brr so that it contains only
bb
ee
hh
yy
Comment