Holy Bible

חינם
על ידי Ajith Joseph | מְעוּדכָּן a month ago | Data
פּוֹפּוּלָרִיוּת

9.4 / 10

חֶבִיוֹן

739ms

רמת שירות

85%

Health Check

N/A

חזרה לכל הדיונים

How to parse it.

Rapid account: Mikolertesx
Mikolertesx
3 years ago
const verses = response.Output.replace(/<\w+>/g, '')
      .split(/\d+/)
      .filter((verse) => verse.trim() !== '')
      .map((verse, index) => {
        return { number: index + 1, text: verse.trim() }
      })

To parse it, you can use this code, it’s a regular expression that first, deletes the HTML characters that are in between, then splits it everytime it finds a new verse.

Hope it’s useful to anyone else! 😄

This doesn’t parse the titles in between, but it gives you every verse in it.

הצטרף לדיון - הוסף תגובה למטה:

התחבר / הירשם כדי לפרסם תגובות חדשות