reference_parser_ssai 1.0.10
reference_parser_ssai: ^1.0.10 copied to clipboard
Fork of reference_parser. Additional parameters for existing parsers and function for returning original string with refs.
import 'package:reference_parser_ssai/reference_parser.dart';
void main() {
//Parse Reference
var ref = parseReference('The most recited verse is Jn 3:16');
print(ref.book); // 'John'
print(ref.bookNumber); // 43
print(ref.startChapterNumber); // 3
print(ref.startVerseNumber); // 16
print(ref.isValid); // true
ref = parseReference('1john 4:5');
print(ref.book); // '1 John'
//Variant Spellings
ref = parseReference('Songs 2:1');
print(ref.reference); // 'Song of Solomon 2:1'
//Range of verses
ref = parseReference('My name is Gen 4:5-10');
print(ref.reference); // 'Genesis 4:5-10'
print(ref.startVerseNumber); // 5
print(ref.endVerseNumber); // 10
//Book and chapter references
ref = parseReference('Ps 1');
print(ref.reference); // 'Psalms 1';
print(ref.startVerseNumber); // 1
print(ref.endVerseNumber); // 6
//Book References
ref = parseReference('gn');
print(ref.reference); // 'Genesis'
//Validation
ref = parseReference('Joseph 2:4');
print(ref.book); // Joseph
print(ref.bookNumber); // null
print(ref.isValid); // false
ref = parseReference(' This is Genesis 1:100');
print(ref.isValid); // false
//Create Reference
ref = Reference('1Co', 3, 4, 5);
print(ref.book); //'1 Corinthians'
print(ref.startChapterNumber); // 3
print(ref.startVerseNumber); // 4
print(ref.endChapterNumber); // 5
// References that exclude common words ('is','song','am','songs')
var refs =
parseAllReferences('This is NOT going to get Gen 2:4 and another book');
print(refs); // ['Genesis 2:4'], 'is' will not be parsed as Isaiah
// var x = parseReferencesAndReplaceString('Wow this is 24 going to get Gen 2:4 reference and update the original string. I am stoked! Is this cool or what? I may Acts 22 as a bard and play a song to celebrate. Ezek. 1:2-3 and Ezekiel are the best.');
// print(x); // Wow this is going to get Genesis 2:4 reference and update the original string. I am stoked! Is this cool or what? I may play a song to celebrate.
refs =
parseAllReferences('Ezekiel 37:1-14 and Ezek. 4 to Ezekiel is cool prophesy to the bones, and as he does, Israelite the bones come together, flesh and skin cover them, and breath enters them, bringing them to life (v. 5-10).');
print(refs);
}