KJV Bible Project - Strange String Copy & Paste Issue Found

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.

  1. Create a struct with these members: Book (int), Chapter (int), Verse (int), Text (string).
  2. Create a datatable based on that same struct.
  3. Download link above and name it Bible.csv.
  4. Open it in Excel and add a blank column to the left of the first column.
  5. Add a blank row before the other rows.
  6. In the top empty row add this to the first 3 columns.
    —, Book, Chapter, Verse, Text
  7. This is the tricky part, you need to use the excel functions to create unique numbers down the left most column.
  8. Save this file and then use notepad++ to remove the trailing CR from the end.
  9. Import into your data table.

Best of luck.