I just pulled down that KJV CSV file and imported it directly into a data table. If you’re interested in doing that here are the steps. Or you can just PM me your email address and I will send you a UE4 project that already has it in there. You can then migrate it to your own project.
- Create a struct with these members: Book (int), Chapter (int), Verse (int), Text (string).
- Create a datatable based on that same struct.
- Download link above and name it Bible.csv.
- Open it in Excel and add a blank column to the left of the first column.
- Add a blank row before the other rows.
- In the top empty row add this to the first 3 columns.
—, Book, Chapter, Verse, Text - This is the tricky part, you need to use the excel functions to create unique numbers down the left most column.
- Save this file and then use notepad++ to remove the trailing CR from the end.
- Import into your data table.
Best of luck.