{
"id": 12,
"book": "2 Kings",
"abbreviation": "2 Kgs",
"abbreviations": [
"2 kings",
"2 kgs",
"2 ki",
"2kgs",
"2kin",
"2ki",
"2k",
"ii kgs",
"ii ki",
"2nd kings",
"2nd kgs",
"second kings",
"second kgs"
]
},
I should not have to manually list out all possible combinations.
For example, "II Kings" isn't supported, but that means I also need to do the same thing for 1 Kings and so on.
There are 3 numbers: 1, 2, and 3. Let an prefix be specified as a separate field.
{ "id": 12, "book": "2 Kings", "abbreviation": "2 Kgs", "abbreviations": [ "2 kings", "2 kgs", "2 ki", "2kgs", "2kin", "2ki", "2k", "ii kgs", "ii ki", "2nd kings", "2nd kgs", "second kings", "second kgs" ] },I should not have to manually list out all possible combinations.
For example,
"II Kings"isn't supported, but that means I also need to do the same thing for 1 Kings and so on.There are 3 numbers: 1, 2, and 3. Let an prefix be specified as a separate field.