How do I split parts of a long string that’s a single line into many objects?
I’m trying to play around with some data from a game using python(I’m also open to view other proramming/script languages for my problem).
The data I want and I’m pulling are coming from a long .lua file and are all in one single line. I want to break up this long line thats containing data into segments/make a table or json of the data contained in that line.
How do I split a long string thats a single line into many lines?
I’m trying to play around with some data from a game using python(I’m also open to view other proramming/script languages for my problem).
The data I want and I’m pulling are coming from a long .lua file and are all in one single line. I want to break up this long line thats containing data into segments/make a table or json of the data contained in that line.