Read the textfile and then split it with regex. Here's a post about it: https://www.b4x.com/android/forum/threads/b4x-regular-expressions-regex-tutorial.7123/. Look for the example titled "Splitting text" and change the comma to a newline. In the bottom of the post there's also a very good link for you to try out your regex pattern before coding it.
Many applications require access to a persistent storage. The two most common storage types are files and databases. We will cover text files in this tutorial. The predefined Files object has several utility methods for working with text files which are pretty easy to use. Files locations -...