Hi folks!
I have a text files that has around 100 lines of sentences. Each sentences are in different lines. This is the sample of the text file:
This is the first line of text and bla bla…
This is the second line of text and bla bla…
Each sentence is in different lines.
Now, I would like to load each of these lines into each different variable. Like this:
var line1 = “This is the first line of text and bla bla…”
var line2 = “This is the second line of text and bla bla…”
var line3 = “Each sentence is in different lines.”
How can I achieve this?
Many many thanks in advanced folks!!