in reply to Re^3: Reading line and Spliting it
in thread Reading line and Spliting it

my problem is to delete the dummy column but the number of columns may differ dynamically as i have to read different files

i use Tie::Array module to write into file. before writing i need to delete that dummy column which i read from another file. i have placed the code above in question itself !

i need those column values to be separate values in an array. so that i can print the columns without dummy column

Replies are listed 'Best First'.
Re^5: Reading line and Spliting it
by Corion (Patriarch) on Jul 17, 2014 at 10:25 UTC

    Now is a good time to learn about pop, splice and other array manipulation functions available to you in Perl.

      thanks every one ! pop is what i was looking out for