03-29-2015 07:30 AM
Save the data from the standard output. I can't help you without that string data.
03-29-2015 08:08 AM
I did what you suggested, but still nothing.
03-29-2015 08:13 AM
Do you have the text file that you saved? That is what I was wanting.
03-29-2015 08:29 AM
I changed the write to txt file code to this:
The weird thing is that it does not create any txt file, so that is why I don't see any data in the array.
03-29-2015 08:33 AM
I had an error.
My code is now this:
03-29-2015 08:35 AM - edited 03-29-2015 08:36 AM
Its reading an empty string:
Should I read line by line, and if so, how do I do it?
03-29-2015 09:04 AM
03-29-2015 09:12 AM - edited 03-29-2015 09:13 AM
The thing is that I need a 2d array, with the headings in the first column and the other data in the second column.
How can I do this?
Thanks.
03-29-2015 09:46 AM - edited 03-29-2015 09:49 AM
@Nando88 wrote:
I did what you suggested, but still nothing.
No, you did not! You need to save it with the data contained in the string as I described above.
Obviously, you don't want to split after the persiod, else it would split between the 24 and the 3, destroying your value.
(Also "/home" is not a valid finename because it contain an illegal character.)
03-29-2015 09:47 AM