in reply to «Do» does not read an array containing element w/ «'» sign.

do is not the best way to read your data. do treats the contents of the file it reads as Perl source code.

I would suggest using Text::CSV

Replies are listed 'Best First'.
Re^2: do does not read massive containing element w/ ' sign.
by nikolay (Beadle) on Aug 22, 2015 at 10:00 UTC
    Thank you. But do you have other suggestions -- as i have to use diver signs in the strings -- including commas, spaces -- so, any delimiter except TAB, CR/NL. -- Meaning that there always will be a sing that needs to be prefixed w/ _\_ sign?

      Read the documentation for Text::CSV_XS -- of course it does handle commas and spaces.

      The way forward always starts with a minimal test.
        Alright, i will go w/ it. Thank you.