whenever I try a read a row in a .csv file it stops treating the row as a single row and stores it in multiple arrays, as supposed to just one. What i'm seeing is as I read a .csv file it seems to containg some carriage returns/ these weird squares when i open it in notepad. I want to remove these characters from the file so that i can properly read the .csv without it exiting too early. How would I go about doing this with a perl script.
|
|
You can clean up trailing whitespace with the chomp() function in perl. You can use something like this to chomp all trailing whitespace and replace it with a single newline:
|
|||||||
|
|
How are you "reading" the file? Are you using Text::CSV or Text::CSV_XS? |
|||
|
|
|
If you wish to read the whole file as one line, simply disable the input record separator:
That is, if you wish to use the data inside perl. If you simply wish to change the input file for other programs to use, and you do not care about the line feeds/carriage returns:
This will do an in-place edit of I would only recommend this if you know that these symbols should not be there. |
|||
|
|