I have a program that scrapes data from a particular page (data changes by the minute) and I've managed to get everything I need somewhat organized, and almost everything I don't need stripped out. There is still a bit I need to get rid of, and I want to load the remainder into an array.
Here is an example of how the data is structured:
some data here
some more data here
even more data here
final data here
other data here
some other data here
this other data here
that other data here
Each group will become an array - I can't figure out how to do that, and certain data will need to be removed before making the group an array (for example, let's say that I want to remove the second line in each group of data). If it will work better, I can break the data into a csv format.
Let me know if anyone has any ideas.
Here is an example of how the data is structured:
some data here
some more data here
even more data here
final data here
other data here
some other data here
this other data here
that other data here
Each group will become an array - I can't figure out how to do that, and certain data will need to be removed before making the group an array (for example, let's say that I want to remove the second line in each group of data). If it will work better, I can break the data into a csv format.
Let me know if anyone has any ideas.