I have a csv file with traceroutes, the last entry in every row is the target IP, but as there are variable no of records in every row ...so I am having difficulty I want to collect the last entry from every row into a column
how do I do that?
|
I have a csv file with traceroutes, the last entry in every row is the target IP, but as there are variable no of records in every row ...so I am having difficulty I want to collect the last entry from every row into a column how do I do that? |
||||
|
|
|
PHP has a nice function fgetcsv(). Example:
To collect the value from the last cell in each row, do the following inside the
Although, this only needs to be done if the number of cells in each row varies or if you actually don't know. |
||||
|
|