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

So, where is your problem exactly? What is the code you have? What does your code output when run? What should it output instead?

Replies are listed 'Best First'.
Re^4: Reading line and Spliting it
by Anonymous Monk on Jul 17, 2014 at 08:42 UTC
    His username probably says it all.
Re^4: Reading line and Spliting it
by lazy (Novice) on Jul 17, 2014 at 10:18 UTC

    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

      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