I made a level editor in another engine that exports a .txt file with just integers in it. Then a space, then the next number is on the next line.
Like this:
NSLNSLNS
N is a number, S is a space, L is a linebreak. The files look like this:
6
2
8
I've read through this multiple times: viewtopic.php?t=81439
And this a few times as well: https://www.love2d.org/wiki/love.filesystem.read
I don't understand how to use these functions to add those values to a table. Would someone please write a code snippet that does it to help me understand how it's applied in practice?
Thank you for your help
Reading a text file with raw data (no common format)
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
-
- Prole
- Posts: 2
- Joined: Fri Dec 11, 2015 5:54 pm
Re: Reading a text file with raw data (no common format)
Code: Select all
local numbers = {}
for line in assert(love.filesystem.lines('filename.txt')) do
numbers[#numbers + 1] = assert(tonumber(line))
end
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot] and 3 guests